Browsing Tag
spring
7 posts
Unpacking Lambda Expressions: What They Are and Why They Matter
If you’ve been browsing modern programming concepts or functional programming in Java, Python, or JavaScript, you might have…
@Qualifier Annotation Spring Boot Explained
The @Qualifier annotation in Spring Boot is used to resolve ambiguity when you have multiple beans of the…
Ultimate Spring Boot Interview Preparation Guide
1. Why Spring Boot? Spring based applications have a lot of configuration. When we use Spring MVC, we…
Using the @Lookup Annotation in Spring
The @Lookup annotation is an injection (like @Inject, @Resource, @Autowired) annotation used at the method level. This annotation…
Introduction to Spring Scheduled and monitoring the task with Spring Actuator ️🕛️📈️
In software development, task scheduling is a critical component for executing specific tasks periodically or according to the…
JUnit Cómo parametrizar un test
JUnit cuenta con una serie de funcionalidades orientadas a ejecutar tests en nuestra aplicación. Una de estas funcionalidades…
Auditing in Spring Boot
What’s auditing? Auditing means tracking and logging transactions related to data, which simply means logging insert, update and…