Micronaut Basic Auth
Learn how to secure a Micronaut application using 'Basic' HTTP Authentication Scheme.
On this guide
In this section
Getting Started
In this guide, we will create a Micronaut application written in Groovy and secure it with HTTP Basic Auth.
RFC7617 defines the "Basic" Hypertext Transfer Protocol (HTTP) authentication scheme, which transmits credentials as user-id/password pairs, encoded using Base64.
What you will need
To complete this guide, you will need the following:
-
Some time on your hands
-
A decent text editor or IDE (e.g. IntelliJ IDEA)
-
JDK 21 or greater installed with
JAVA_HOMEconfigured appropriately
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.
-
Download and unzip the source
Writing the Application
Create an application using the Micronaut Command Line Interface or with Micronaut Launch.
mn create-app example.micronaut.micronautguide \
--features=security \
--build=maven \
--lang=groovy \
--test=spock|
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 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. |
Authentication Provider
To keep this guide simple, create a naive AuthenticationProvider to simulate user authentication.
Controllers
Create HomeController which resolves the base URL /:
WWW-Authenticate
Replace the default Exception Handler for AuthorizationExceptionHandler, the exception raised when a request is not authorized.
package example.micronaut
import io.micronaut.context.annotation.Replaces
import io.micronaut.core.annotation.Nullable
import io.micronaut.http.HttpRequest
import io.micronaut.http.HttpResponse
import io.micronaut.http.MutableHttpResponse
import io.micronaut.http.server.exceptions.response.ErrorResponseProcessor
import io.micronaut.security.authentication.AuthorizationException
import io.micronaut.security.authentication.DefaultAuthorizationExceptionHandler
import io.micronaut.security.config.RedirectConfiguration
import io.micronaut.security.config.RedirectService
import io.micronaut.security.errors.PriorToLoginPersistence
import jakarta.inject.Singleton
import static io.micronaut.http.HttpHeaders.WWW_AUTHENTICATE
import static io.micronaut.http.HttpStatus.FORBIDDEN
import static io.micronaut.http.HttpStatus.UNAUTHORIZED
@Singleton //
@Replaces(DefaultAuthorizationExceptionHandler) //
class DefaultAuthorizationExceptionHandlerReplacement extends DefaultAuthorizationExceptionHandler {
DefaultAuthorizationExceptionHandlerReplacement(
ErrorResponseProcessor<?> errorResponseProcessor,
RedirectConfiguration redirectConfiguration,
RedirectService redirectService,
@Nullable PriorToLoginPersistence priorToLoginPersistence
) {
super(errorResponseProcessor, redirectConfiguration, redirectService, priorToLoginPersistence)
}
@Override
protected MutableHttpResponse<?> httpResponseWithStatus(HttpRequest request,
AuthorizationException e) {
if (e.isForbidden()) {
return HttpResponse.status(FORBIDDEN)
}
HttpResponse.status(UNAUTHORIZED)
.header(WWW_AUTHENTICATE, 'Basic realm="Micronaut Guide"')
}
}The previous code adds the WWW-Authenticate header to indicate the authentication scheme.
| 1 | Use jakarta.inject.Singleton to designate a class as a singleton. |
| 2 | Specify that DefaultAuthorizationExceptionHandlerReplacement replaces the bean DefaultAuthorizationExceptionHandler |
Tests
Create a test to verify the user authentication flow via Basic Auth.
Use the Micronaut HTTP Client and Basic Auth
If you want to access a secured endpoint, you can also use a Micronaut HTTP Client and supply the Basic Auth as the Authorization header value.
First create a @Client with a method home which accepts an Authorization HTTP header.
Create a test which uses the previous @Client
Testing the Application
To run the tests:
./mvnw testRunning the Application
To run the application, use the ./mvnw mn:run command, which starts the application on port 8080.
To test the running application, issue a GET request to localhost:8080 with a Basic Authentication header. One way to do this is with curl:
curl -v -u sherlock:password localhost:8080If you open http://localhost:8080 in a browser, a login dialog pops up due to the WWW-Authenticate header.
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). |