Enterprise Java
-
Spring AI MongoDB RAG Example
The Spring AI MongoDB RAG Tutorial offers a comprehensive guide to building a Retrieval-Augmented Generation (RAG) application using Spring Boot,…
Read More » -
Mastering Spring Cloud: Building Robust Microservices Architectures
Microservices architecture has revolutionized the way we build large-scale, distributed systems. Spring Cloud provides a comprehensive framework to simplify the…
Read More » -
Create a Database Schema Automatically with Spring Boot
Spring Boot integrates effortlessly with JPA, simplifying the implementation of the data access layer in our applications. One of its…
Read More » -
Spring Boot Test Mock @value
In Spring Boot, the @Value annotation is widely used to inject values from property files, environment variables, or other external…
Read More » -
Query JPA Single Table Inheritance
In Java Persistence API (JPA), inheritance mapping provides a way to map Java class hierarchies to database tables. Single Table…
Read More » -
Execute Scheduled Task Only Once in Spring Boot
Usually, we configure tasks to run periodically. However, there are situations where we may need to schedule a task to…
Read More » -
Using the NetBeans Profiler Programmatically in Java
This article explores how to use the NetBeans Profiler API to collect heap dumps, analyze memory usage, and inspect specific…
Read More » -
Create Avro Schema With List of Objects
Apache Avro is a powerful data serialization framework that enables efficient data exchange and storage. It is widely used in…
Read More » -
Async Feign Client Calls in Spring Boot Using CompletableFuture
Using CompletableFuture with Feign Client in Spring Boot enables asynchronous HTTP calls, improving performance by allowing the application to process…
Read More »