Enterprise Java
-
Retrieving Lists of Entities from a Database Using Hibernate
Hibernate is a powerful Object-Relational Mapping (ORM) framework for Java that simplifies the interaction between an application and a database…
Read More » -
Refresh and Fetch an Entity After Save in Spring Data JPA
The Java Persistence API (JPA) serves as a connector linking Java objects and relational databases, facilitating the smooth persistence and…
Read More » -
Spring Prototype Beans with Runtime Arguments
Spring offers various bean scopes, with the default being singleton, which creates a single instance throughout the application. Prototype scope,…
Read More » -
Autowire Spring Bean in Servlet Filter
Servlet filters provide a powerful way to intercept and manipulate incoming requests. However, accessing Spring-managed beans within these filters can…
Read More » -
Implement Two-Level Cache With Spring
Caching is a technique used to store data temporarily in a faster storage layer to improve the performance and responsiveness…
Read More » -
Commit Offsets in Kafka
Apache Kafka is an open-source stream-processing software platform developed by the Apache Software Foundation. Kafka uses topics, partitions, and replication…
Read More » -
Parse HTML Table With Jsoup
Jsoup, an open-source library, serves the purpose of scraping HTML pages by offering an API for parsing, extracting, and manipulating…
Read More » -
Creating PostgreSQL Schema Before Liquibase Execution
1. Enhancing PostgreSQL Schema Management In PostgreSQL database management, organizing database entities into separate schemas is a best practice for…
Read More »