6 Most Useful Java 8 Stream Functions with Real-time Examples
In this article, we are going to explore the Java Stream API with some real-time use cases from the projects I've worked. What is Stream? A Stream in Java can…
In this article, we are going to explore the Java Stream API with some real-time use cases from the projects I've worked. What is Stream? A Stream in Java can…
In the previous article, we have added logging support using the Logback logging framework. Now, we are going to add embedded tomcat to the Spring REST application without using Spring Boot. Let's…
In the previous article, we have secured the REST API with Spring Security and JSON Web Token (JWT). Now we are gonna add logging support using the Logback logging framework since there is…
When you have to switch from your favorite Eclipse IDE to IntelliJ, then it might be hard for you to get comfortable with IntelliJ IDEA initially, especially if you've been…
Overview Spring Boot provides the parent POM for easier creation of Spring Boot applications. However, not everyone likes inheriting from the spring-boot-starter-parent POM. In one of the projects I have worked earlier, we have…
In our previous articles, we have implemented Basic Authentication, JWT Authentication, LDAP authentication with BASIC_AUTH, JWT_AUTH and LDAP_AUTH profiles respectively. When we run the the application with any of the…
In the previous article we have secured the REST API with Spring Security JWT Authentication. Now we are gonna add LDAP Authentication and Role Based Authorization with Database to the same REST…
In the previous article, we have secured the REST API with Spring Security Basic Authentication. Now we are gonna add JWT Authentication and Role-Based Authorization to the same REST API that we…
In the previous article we have integrated Swagger 2 with Spring Boot REST CRUD API. Now we are gonna secure the REST API with Spring Security Basic Authentication and Role Based Authorization.…
In the previous article we have implemented a Spring Boot REST CRUD API. Now we are gonna generate REST API Documentation using Swagger 2 for those RESTful services in 2 simple steps.…