Spring
-
Enterprise Java
HTTP DELETE With Request Body
HTTP DELETE is typically used to request the deletion of a resource from a server. However, unlike other HTTP methods…
Read More » -
Enterprise Java
Mastering Spring Batch: Advanced Data Processing Techniques
In the world of enterprise software, batch processing remains a cornerstone for handling large-scale data processing tasks. Whether it’s migrating…
Read More » -
Enterprise Java
Spring Security 6: Enhanced Authentication and Authorization
Spring Security 6 introduces several powerful features to make authentication and authorization in Java web applications more secure, flexible, and…
Read More » -
Enterprise Java
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 » -
Enterprise Java
Manually Destroy Prototype Spring Bean
In Spring Framework, beans can be defined with different scopes. The most common scopes are singleton and prototype. While singleton…
Read More » -
Enterprise Java
Spring Cloud Gateway: A Practical Approach
In the realm of microservices architecture, a gateway serves as a unified entry point for multiple microservices. It acts as…
Read More » -
Enterprise Java
Spring HTTP Clients: RestClient, WebClient, RestTemplate
Spring offers several HTTP clients to interact with RESTful services. This article delves into RestTemplate, WebClient, and the newer RestClient,…
Read More » -
Enterprise Java
Converting a Map to a Spring MultiValueMap
In Spring, a MultiValueMap is a structure for storing multiple values for a single key. This can be useful in…
Read More » -
Enterprise Java
Spring JPA LIKE Query Example With JdbcTemplate or JpaRepository
LIKE queries in SQL allow users to search for specified patterns in the database table columns, enabling flexible and dynamic…
Read More »