How to Build a Custom Spring Boot Starter for Microservices

  • Post author:
  • Post category:Spring Boot
  • Post comments:0 Comments
  • Post last modified:December 13, 2020

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…

Continue ReadingHow to Build a Custom Spring Boot Starter for Microservices

How to Secure Spring Boot 2 REST API using LDAP Authentication and Authorization with MySQL Database in 3 Steps

  • Post author:
  • Post category:Spring Boot
  • Post comments:0 Comments
  • Post last modified:December 6, 2020

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…

Continue ReadingHow to Secure Spring Boot 2 REST API using LDAP Authentication and Authorization with MySQL Database in 3 Steps

How to Secure Spring Boot 2 REST API with Spring Security 5 JWT Authentication, Role-based Authorization and MySQL Database in 9 Steps

  • Post author:
  • Post category:Spring Boot
  • Post comments:8 Comments
  • Post last modified:February 15, 2023

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…

Continue ReadingHow to Secure Spring Boot 2 REST API with Spring Security 5 JWT Authentication, Role-based Authorization and MySQL Database in 9 Steps

How to Secure Spring Boot 2 REST API with Spring Security Basic Authentication, Role-based Authorization and MySQL Database in 7 Steps

  • Post author:
  • Post category:Spring Boot
  • Post comments:7 Comments
  • Post last modified:December 13, 2020

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.…

Continue ReadingHow to Secure Spring Boot 2 REST API with Spring Security Basic Authentication, Role-based Authorization and MySQL Database in 7 Steps

How to Build Spring Boot 2.X RESTful CRUD API with Spring Data JPA, Hibernate, Lombok, and MySQL Database in 7 Simple Steps

  • Post author:
  • Post category:Spring Boot
  • Post comments:0 Comments
  • Post last modified:December 13, 2020

In the previous article we have implemented a REST API without using Spring Boot. In this article we are gonna implement RESTful services using Spring Boot in 7 simple steps.…

Continue ReadingHow to Build Spring Boot 2.X RESTful CRUD API with Spring Data JPA, Hibernate, Lombok, and MySQL Database in 7 Simple Steps

Logging, Performance Monitoring, Security and Transaction Management with Spring AOP

  • Post author:
  • Post category:Spring Boot
  • Post comments:1 Comment
  • Post last modified:December 13, 2020

This article is the continuation of the previous article and aims to implement logging, events publishing, user access security, transaction management, and performance monitoring using Spring AOP. Design Spring AOP…

Continue ReadingLogging, Performance Monitoring, Security and Transaction Management with Spring AOP