Learn about the ApplicationContext interface in Spring and how to configure beans in some of the more common types of ApplicationContext.
Also find me here:
Baeldung Author
Kamlesh Kumar
Kamlesh is a software developer having over 13 years of industry experience. He has been working on Java, Spring, Microservices, Cloud and related technologies. He is a passionate learner and loves to share what he learns. In his leisure, he likes to read, run, cycle or play Tabla (an Indian classical music instrument).
Here's what I've written (so far):
Baeldung on Java
- All
- Java Concurrency (2)
- Java (2)
- Spring Data (1)
- Spring Cloud (1)
- Spring (1)
- Java Collections (1)
- JVM (1)
- Algorithms (1)
Java Thread Deadlock and Livelock
Filed under Java Concurrency
Learn how to recognize and avoid deadlock and livelock in multi-threaded Java applications.
Introduction to cache2k
Filed under Java
Learn how to use cache2k, a lightweight in-memory Java caching library.
Runtime.getRuntime().halt() vs System.exit() in Java
Filed under JVM
Learn the differences between Runtime.getRuntime().halt() and System.exit() in Java.
Fallback for Zuul Route
Filed under Spring Cloud
Learn how to configure Zuul routes with fallback.
Using a Mutex Object in Java
Filed under Java Concurrency
Explore the concept of a mutex object in Java.
@DynamicUpdate with Spring Data JPA
Filed under Spring Data
Learn how to use @DynamicUpdate with a JPA entity to ensure that Hibernate uses only the modified columns in the SQL statement for the update
Checking If a List Is Sorted in Java
Filed under Algorithms, Java, Java Collections
Learn several algorithms for checking whether a list is sorted in Java.