Exercise 3: Authorization in Quarkus application
Last updated
Last updated
Quarkus comes with two great quides that describe how to use Keycloak in web apps and services:
Develop protected Endpoints
The Microservice Articles provides an endpoint /articles
which only users with the role user
can access. In application.properties the Keycloak URL is defined as well as the client ID and secret.
The shows the simplified architecture:
The service Articles provides an endpoint ‘/articles’ which only users with the role ‘user’ can access. In application.properties the Keycloak URL is defined as well as the client ID and secret.
Note the line resteasy.role.based.security=true
. This setting is important, so that the Articles service can receive the Authorization header from the Web-API service. I couldn’t find this in the Quarkus documentation, but Phillip Krüger from the Quarkus team provided this information.
Once you’ve configured your Quarkus application, implementing the endpoint is trivial. Here we use @RolesAllowed
, but there are other annotations available, for example @Authenticated
.
This allows the test user Alice to invoke this endpoint, since she has the role `user.
The Web-API service has also a protected endpoint which has been implemented as above. Additionally it also invokes the Articles service. In order to do this, the MicroProfile REST Client is used.
Let’s take at the configuration first.
The last line (6) is important again. This allows forwarding the authorization header with the JWT token without having to implement any code.