Java / Gradle

Micronaut Security API Key

Learn how to secure a Micronaut application using an API Key.

Sergio del Amo
On this guide
In this section

Getting Started

In this guide, you will create a Micronaut application written in Java and secure it with an API Key.

What you will need

To complete this guide, you will need the following:

Solution

We recommend that you follow the instructions in the next sections and create the application step by step. However, you can go right to the completed example.

Writing the Application

Create an application using the Micronaut Command Line Interface or with Micronaut Launch.

mn create-app example.micronaut.micronautguide \
    --features=security,graalvm \
    --build=gradle \
    --lang=java \
    --test=junit
Note
If you don’t specify the --build argument, Gradle with the Kotlin DSL is used as the build tool.
If you don’t specify the --lang argument, Java is used as the language.
If you don’t specify the --test argument, JUnit is used for Java and Kotlin, and Spock is used for Groovy.

The previous command creates a Micronaut application with the default package example.micronaut in a directory named micronautguide.

If you use Micronaut Launch, select Micronaut Application as application type and add security, and graalvm features.

Note
If you have an existing Micronaut application and want to add the functionality described here, you can view the dependency and configuration changes from the specified features, and apply those changes to your application.

API Key Repository

To keep things simple, populate API keys via configuration.

java/src/main/java/example/micronaut/ApiKeyConfiguration.java

Create a functional interface to retrieve a user given an API Key.

java/src/main/java/example/micronaut/ApiKeyRepository.java

Create an implementation of ApiKeyRepository which uses the API keys stored in configuration.

java/src/main/java/example/micronaut/ApiKeyRepositoryImpl.java

Token Reader

Micronaut Security is flexible. You define a bean of type TokenReader to read tokens from a custom HTTP header such as X-API-Key.

java/src/main/java/example/micronaut/ApiKeyTokenReader.java

Token Validator

Define a bean of type TokenValidator to validate the API keys by using the ApiKeyRepository.

java/src/main/java/example/micronaut/ApiKeyTokenValidator.java

Controllers

To test the application create several controllers.

java/src/main/java/example/micronaut/ApiController.java

Create tests that verify /api returns 401 if no API Key is present or the request contains a wrong API Key.

java/src/test/java/example/micronaut/ApiControllerTest.java

Create a controller whose path does not match the ApiKeyTokenValidator.

java/src/main/java/example/micronaut/AppController.java

Create tests that verify /app returns 401 if no API Key is present or even when the request contains a valid API Key.

java/src/test/java/example/micronaut/AppControllerTest.java

Testing the Application

To run the tests:

./gradlew test

Then open build/reports/tests/test/index.html in a browser to see the results.

Resources

Set configuration to have an API available when you run your application:

src/main/resources/application.properties
api-keys.sdelamo.name=Sergio
api-keys.sdelamo.key=FOOBAR

Running the Application

To run the application, use the ./gradlew run command, which starts the application on port 8080.

To test the running application, issue a GET request to localhost:8080 providing a valid API Key:

curl -i --header "Accept: text/plain" --header "X-API-KEY: FOOBAR" localhost:8080

Generate a Micronaut Application Native Executable with GraalVM

We will use GraalVM, an advanced JDK with ahead-of-time Native Image compilation, to generate a native executable of this Micronaut application.

Compiling Micronaut applications ahead of time with GraalVM significantly improves startup time and reduces the memory footprint of JVM-based applications.

Note
Only Java and Kotlin projects support using GraalVM’s native-image tool. Groovy relies heavily on reflection, which is only partially supported by GraalVM.

GraalVM Installation

The easiest way to install GraalVM on Linux or Mac is to use SDKMan.io.

Java 25
sdk install java 25.0.2-graal

For installation on Windows, or for a manual installation on Linux or Mac, see the GraalVM Getting Started documentation.

The previous command installs Oracle GraalVM, which is free to use in production and free to redistribute, at no cost, under the GraalVM Free Terms and Conditions.

Alternatively, you can use the GraalVM Community Edition:

Java 25
sdk install java 25.0.2-graalce

Native Executable Generation

To generate a native executable using Gradle, run:

./gradlew nativeCompile

The native executable is created in build/native/nativeCompile directory and can be run with build/native/nativeCompile/micronautguide.

It is possible to customize the name of the native executable or pass additional parameters to GraalVM:

build.gradle

To test the native executable, issue a GET request to localhost:8080 providing a valid API Key:

curl -i --header "Accept: text/plain" --header "X-API-KEY: FOOBAR" localhost:8080

Next Steps

See the Micronaut security documentation to learn more.

Help with the Micronaut Framework

The Micronaut Foundation sponsored the creation of this Guide. A variety of consulting and support services are available.

License

Note
All guides are released with an Apache License 2.0 for the code and a Creative Commons Attribution 4.0 license for the writing and media (images).