Micronaut
In this bonus lab we'll see how a Micronaut Microservice can be extended to an OAuth 2.0 and OpenID Connect 1.0 compliant Resource Server.
See Micronaut JWT Security Guide for all details on how to build and configure a resource server requiring JWT bearer tokens.
Lab Contents
REST API
This Micronaut demo app just provides one secured endpoint at localhost:9096/hello.
To test if the application works as expected, either
open Postman and configure request for localhost:9096/hello
or use a command line like curl, httpie or postman (if you like a UI)
Httpie:
Curl:
At this stage the application will return a 401 status.
Users and roles
As this app uses the same Keycloak client configuration you can just use the same users as before:
We will use Keycloak as identity provider. Please again make sure you have set up and running keycloak as described in Setup Keycloak
Step 1: Generate the application
This application has been generated using the Micronaut cli generator tool:
Step 2: Add dependencies
To extend a Micronaut application into a resource server you have to make sure the following dependencies are in the gradle build file build.gradle:
Step 3: Add jwt configuration
Micronaut requires a JWKS to validate a JWT token signature. This is why Micronaut requires to configure a jwks_uri entry in application.yaml:
An error you get very often with files in yaml format is that the indents are not correct. This can lead to unexpected errors later when you try to run all this stuff.
With this configuration in place we have already a working resource server that can handle JWt access tokens transmitted via http bearer token header. Micronaut also validates by default:
the JWT signature against the queried public key(s) from jwks_url
that the JWT is not expired
In addition, Micronaut automatically maps all 'groups' claim entries to corresponding roles that may be checked via @Secured annotations.
Step 4: Secure the endpoint
Look into the class micronaut.server.app.HelloController to see how the only REST endpoint is secured and the details of the JWT based principal are read and returned:
Step 5: Run and test basic resource server
Before starting the Micronaut application please make sure that the annotation processing is enabled for the java compiler in your IDE.
Now it should be possible to start the configured application micronaut.server.app.MicronautServerApp.
Again we use the password grant flow request to get a token for calling our new service:
httpie:
curl:
This should return an access token together with a refresh token:
```http request HTTP/1.1 200 OK Content-Type: application/json
{ "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCIgO...", "expires_in": 300, "not-before-policy": 1556650611, "refresh_expires_in": 1800, "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCIg...", "scope": "profile email user", "session_state": "c92a82d1-8e6d-44d7-a2f3-02f621066968", "token_type": "bearer" }
curl:
You should now see something like this:
This concludes the Bonus Lab.
Last updated