Java / Maven

Micronaut RequestStreamHandler to Lambda Java Runtime

Learn how to deploy a Micronaut function to AWS Lambda Java Runtime with an AWS Lambda RequestStreamHandler.

Sergio del Amo
On this guide
In this section

In this guide, we will deploy a Micronaut serverless function to AWS Lambda using a RequestStreamHandler.

Getting Started

In this guide, we will create a Micronaut application written in Java.

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-function-app example.micronaut.micronautguide \
    --features=aws-lambda \
    --build=maven \
    --lang=java
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.

If you use Micronaut Launch, select "Serverless Function" as application type and add the aws-lambda feature.

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

RequestStreamHandler

To use your own serialization, implement the RequestStreamHandler interface. With this interface, Lambda passes your handler an input stream and output stream. The handler reads bytes from the input stream, writes to the output stream, and returns void.

The application contains a class extending MicronautRequestStreamHandler.

Replace the generated FunctionRequestHandler.java with the following:

src/main/java/example/micronaut/FunctionRequestHandler.java

You will use MicronautRequestStreamHandler in combination with a class annotated with @FunctionBean, which implements one of the interfaces from the java.util.function package.

src/main/java/example/micronaut/RequestFunction.java

Tests

You can test that the handler behaves as expected, as shown in the following example:

src/test/java/example/micronaut/FunctionRequestHandlerTest.java

Testing the Application

To run the tests:

./mvnw test

Lambda

Create a Lambda function. As a runtime, select Java 21 or Java 17.

create function

Upload Code

Create an executable jar including all dependencies:

./mvnw package

Upload it:

upload function code

Handler

As Handler, set:

example.micronaut.FunctionRequestHandler

handler 2

Test

You can test it easily with a JSON Event:

{
  "path": "/",
  "httpMethod": "GET",
  "headers": {
    "Accept": "application/json"
  }
}

When working with Amazon API Gateway, it’s easy to use apigateway-aws-proxy as an Event Template to get started:

test event

You should see a 200 response:

test result

Next Steps

Explore more features with Micronaut Guides.

Read more about:

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).