Custom Actuator Endpoint – Spring Boot actuators with Example
Custom Actuator Endpoint – Spring Boot actuators with Example Normally an application gains access to a number of production-level services thanks to Spring Boot Actuator. There are numerous built-in endpoints…
@Qualifier vs @Primary with Examples
@Qualifier vs @Primary with Examples: In this article, Let us discuss about @Qualifier and @Primary annotations with examples. @Primary: When more than one bean qualifies for the dependency to be…
Collectors in Java 8 – With Examples
Collectors in Java 8 – With Examples: Collectors is a class which has been introduced in Java 8 and most commonly used as last step of Stream operations. Implementations of…
Spring Boot Security with JWT Example – Token Generate, Validate and Refresh
Spring Boot Security with JWT Example In this article let us learn about Json Web Tokens (JWT), How to generate JWT token and to refresh the JWT token. We are…
Spring Boot Security with Database Authentication
Spring Boot Security with Database Authentication In this article we are going to see how can we perform authentication using database and spring security. Before we go for an example,…