2019-10-31 21:43:47 -04:00
## JWT Fun
This module contains articles about JJWT.
This tutorial walks you through the various features supported by the [JJWT ](https://github.com/jwtk/jjwt ) library - a fluent interface Java JWT building and parsing library.
### Build and Run
It's super easy to build and exercise this tutorial.
```
2021-04-30 09:37:16 -04:00
mvn clean spring-boot:run
2019-10-31 21:43:47 -04:00
```
That's it!
You can hit the home endpoint with your favorite command-line http client. My favorite is: [httpie ](https://github.com/jkbrzt/httpie )
`http localhost:8080`
```
Available commands (assumes httpie - https://github.com/jkbrzt/httpie):
http http://localhost:8080/
This usage message
http http://localhost:8080/static-builder
build JWT from hardcoded claims
http POST http://localhost:8080/dynamic-builder-general claim-1=value-1 ... [claim-n=value-n]
build JWT from passed in claims (using general claims map)
http POST http://localhost:8080/dynamic-builder-specific claim-1=value-1 ... [claim-n=value-n]
build JWT from passed in claims (using specific claims methods)
http POST http://localhost:8080/dynamic-builder-compress claim-1=value-1 ... [claim-n=value-n]
build DEFLATE compressed JWT from passed in claims
http http://localhost:8080/parser?jwt=< jwt >
Parse passed in JWT
http http://localhost:8080/parser-enforce?jwt=< jwt >
Parse passed in JWT enforcing the 'iss' registered claim and the 'hasMotorcycle' custom claim
```
## Relevant articles:
- [Supercharge Java Authentication with JSON Web Tokens (JWTs) ](https://www.baeldung.com/java-json-web-tokens-jjwt )
2021-03-17 11:08:46 -04:00
- [Decode a JWT Token in Java ](https://www.baeldung.com/java-jwt-token-decode )