Let’s Implement Basic JWT Based Authentication in Spring boot

backend (3 Part Series)

1 Let’s Implement Basic JWT Based Authentication in Spring boot
2 Let’s Implement JWT Based Authentication in Spring boot
3 Let’s Build a Robust Social Login Using Spring Boot, Vue.js and Firebase

Step by step guild how to implement JWT Based Authentication, Part 1

JWT based authentication is very useful when we have web and mobile clients and a backend server, which provides a good alternative to session-based authentication. I did not find a good tutorial on this topic, so I decided to make one.

Theory

图片[1]-Let’s Implement Basic JWT Based Authentication in Spring boot - 拾光赋-拾光赋

Session vs Token Based Authentication | by Sherry Hsu | Medium

Sherry Hsu ・ Jul 27, 2018 ・ Medium

Video Tutorial

I found this awesome tutorial for implementing basic JWT based authentication for noobs like me.

In this tutorial, we will implement basic JWT based authentication, with the mock user and no database, to understand the concept. We will extend it later to integrate database and full signup, login functionalities.

If you just want to check out the code, checkout the Github branch.

Features we will develop

  1. JWT util file to create and validate JWT token

  2. A controller to generate JWT token

  3. User will be hardcoded

  4. No password encoder

Youtube Demo

I have created a short video of 7 min, to explain all the component, if you do not have time to watch the full 40 min Javabrains video, or you already know about JWT auth, but do not know how to implement it in spring.

Step 1

Create a Spring project with the following dependency in pom.xml

Step 2

Create a custom MyUserDetailsService service, which extend UserDetailsService of security.core package and override the loadUserByUsername by hardcoding an user, for the sake of simplicity.

We will store and retrieve user from the database in a later tutorial.

Step 3

Create a SecurityConfigurer file and enable EnableWebSecurity annotation

Things to note

  1. We did not use any password encoder in this tutorial. We will use BCrypt encoding in next tutorial

  2. Antmatcher means except the ‘/authenticate’ endpoint, all other apis will be authenticated

  3. We are using a stateless session creation policy, i.e every api will be authenticated.

  4. we are providing our implementation of Userdetail service to Spring AuthenticationManagerBuilder

    Step 4

Create the JWT util file to validate and create tokens. Check out the video (forward to 10:00) above to know more about each function.

Step 5

Create a filter chain to extract the JWT token from Authorization header, validate the token, and set the authentication in a security context.

Step 6

Create the controller to test the authentication


In the next tutorial, we will hook this with real users in the MySQL database and implement signup/login functionality.

Thanks for reading 🙂

backend (3 Part Series)

1 Let’s Implement Basic JWT Based Authentication in Spring boot
2 Let’s Implement JWT Based Authentication in Spring boot
3 Let’s Build a Robust Social Login Using Spring Boot, Vue.js and Firebase

原文链接:Let’s Implement Basic JWT Based Authentication in Spring boot

© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容