Spring Boot Hikari Connection Pool Configurations
Hikari Connection Pool Here in this Spring Boot application example, I am going to show you how to use Hikari connection pool for the dedicated Hikari Data Source…
Hikari Connection Pool Here in this Spring Boot application example, I am going to show you how to use Hikari connection pool for the dedicated Hikari Data Source…
Introduction In this example I will show you how to convert entity class to DTO (Data Transfer Object) class and DTO class to entity class using MapStruct. So,…
Introduction Here I am going to show you how to connect to Oracle data source using JDBC LDAP URL. I am going to create multiple data sources for…
Introduction In this example I am going to show you Spring Security Pre-authentication hasrole with Spring Data JPA. In my another example I had shown the similar example…
Introduction Here I am going to build a system to log online user activity in Spring Boot applications using HandlerInterceptor interface. As an application owner you may want…
Introduction Spring Data JPA provides multiple ways of selecting or fetching data from database server and one of the ways is using @NamedQuery or @NamedQueries. @NamedQuery and @NamedQueries…
Introduction In this example you will see how to work with IN clause with WHERE condition in SQL statement in Spring Data JPA. I will use MySQL server…
Introduction In real-world applications, you may encounter scenarios where returning entity objects directly from a Spring Data JPA repository is not ideal. Instead, you might need to use…
In this tutorial we will see how to create Datasource in Spring Boot application in different ways. We need to create datasource in our applicationin order to interact…
JNDI Data Source In this post I will show you how to configure JNDI datasource with Spring Boot applications. JNDI (Java Naming Directory Interface) data source is very…