Spring Boot
-
Enterprise Java
HTTP Request and Response Logging Using Logbook in Spring
Zalando Logbook is a popular Java library that provides detailed HTTP request and response logging capabilities. It’s highly customizable and…
Read More » -
Enterprise Java
Testing CORS in Spring Boot
CORS (Cross-Origin Resource Sharing) is a mechanism that allows resources on a web server to be requested from another domain.…
Read More » -
Enterprise Java
Boost DTO Creation with Records & MapStruct in Spring Boot
DTO (Data Transfer Object) creation is a common task in Spring Boot applications. Traditionally, this involved writing boilerplate code for…
Read More » -
Enterprise Java
Inject a Mock as a Spring Bean in a Spock Spring Test
Spock is a powerful testing framework for Java and Groovy applications, especially for writing unit and integration tests. It integrates…
Read More » -
Enterprise Java
Embed PostgreSQL in Spring Boot Testing
Testing is a crucial aspect of software development, ensuring that code functions as expected and integrates well with other components.…
Read More » -
Enterprise Java
Spring Boot 3.x New Features
Spring Boot 3.x brings a wave of exciting new features and improvements designed to empower developers and enhance the performance…
Read More » -
Enterprise Java
Resolving Spring Boot H2 JdbcSQLSyntaxErrorException: “Table not found”
Spring Boot makes it easy to develop Spring applications with its pre-configured components. However, we often encounter the JdbcSQLSyntaxErrorException: Table…
Read More » -
Enterprise Java
Spring Boot MVC REST Controller Example & Unit Tests
In modern web development, REST APIs are essential for enabling communication between different systems and platforms. The Spring Framework, particularly…
Read More » -
Enterprise Java
Spring Boot JpaRepository Example
Hello readers let us delve into understanding the Spring Data JPA module. 1. JpaRepository interface Spring Data JPA provides a…
Read More »