Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/techprimers/jwt-security-example

Spring Boot with Spring Security using JWT
https://github.com/techprimers/jwt-security-example

jwt spring-boot spring-security

Last synced: 6 days ago
JSON representation

Spring Boot with Spring Security using JWT

Awesome Lists containing this project

README

        

# Spring Security using JWT (Json Web Token) in Spring Boot

This Project uses JWT to secure the REST endpoints.

The Following are the REST end points available in the example.
- `/token` - Generates the JWT token based on the JSON sent. Its a POST method which expects the JSON: `{ "username": "name", "id": 123, "role": "admin"}`
- `/rest/hello` - Requires a JWT Token with Header `key - "Authorisation"` and `value - "Token "`