Java

How-to Tutorials for Spring Security OAuth2 & REST API

In this post, I have listed down some of the top pages which I came across while doing exploring implementation for Spring Security OAuth2 for REST APIs based apps. This page will be updated with good links in time.

  • Secure a Spring Boot REST API With JSON Web Token + Reference to Angular Integration
    • This one is very helpful (by-far-the-best) for developers doing Angular App on the client side and Spring Boot app on the server side. Really a great step-by-step tutorial. Kudos to Author, Nouhoun Y. Diarra. Covers some of the following topics. Github project can be found on this page.
      • Configure spring security
      • Configure authorization server
      • Configure resource server
      • Configure data source
      • Provide scripts for database
      • Provides a sample Controller (RestController)
      • Provides instructions for running/testing the app
    • For those working with latest Spring framework and Spring boot, you may notice that SHAPasswordEncoder is no more supported as demonstrated in this article. Thus, you may have to use password encoder such as BcryptPasswordEncoder. You have to make changes such as some of the following:
      • Generate client-secret using BcryptPasswordEncoder and update application.properties file.
      • Update SecurityConfig.java file to use BcryptPasswordEncoder by using code such as new BCryptPasswordEncoder(). If you want to get access to the updated file, I have a private Github project created with MySQL database. Please feel free to reach out and I would share the code.
  • Oauth2 Stateless Authentication with Spring and JWT Token
    • A GitHub project with simple and great code for implementing JWT Token with Spring Security OAuth2. Provides source code for Security implementation, controllers, services etc. Great read.
  • Spring Boot – Maven – OAuth2 – JWT – MySql
    • A Github project explaining Spring security Oauth2 and JWT implementation
  • Spring Security OAuth2 Implementation – BaelDung
Latest posts by Ajitesh Kumar (see all)
Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Recent Posts

What are AI Agents? How do they work?

Artificial Intelligence (AI) agents have started becoming an integral part of our lives. Imagine asking…

2 weeks ago

Agentic AI Design Patterns Examples

In the ever-evolving landscape of agentic AI workflows and applications, understanding and leveraging design patterns…

2 weeks ago

List of Agentic AI Resources, Papers, Courses

In this blog, I aim to provide a comprehensive list of valuable resources for learning…

2 weeks ago

Understanding FAR, FRR, and EER in Auth Systems

Have you ever wondered how systems determine whether to grant or deny access, and how…

2 weeks ago

Top 10 Gartner Technology Trends for 2025

What revolutionary technologies and industries will define the future of business in 2025? As we…

2 weeks ago

OpenAI GPT Models in 2024: What’s in it for Data Scientists

For data scientists and machine learning researchers, 2024 has been a landmark year in AI…

3 weeks ago