How to Secure Spring REST Services with Spring Security 5 and JWT Authentication without using Spring Boot

  • Post author:
  • Post category:Spring
  • Post comments:3 Comments
  • Post last modified:September 29, 2021

In the previous article, we have implemented Spring REST API without using Spring Boot. Now we are gonna secure the REST API with Spring Security and JSON Web Token (JWT) without…

Continue ReadingHow to Secure Spring REST Services with Spring Security 5 and JWT Authentication without using Spring Boot

Calling Stored Procedure and mapping the query result to non-entity POJO using Spring JPA SqlResultSetMapping

Recently, I gotta chance to work with a microservice in which I had to call a Stored Procedure and map the results to a POJO. By default the StoredProcedureQuery returns…

Continue ReadingCalling Stored Procedure and mapping the query result to non-entity POJO using Spring JPA SqlResultSetMapping