Groovy / Maven

Micronaut Cache

Learn how to use Micronaut caching annotations

Sergio del Amo
On this guide
In this section

Getting Started

In this guide, you will use Micronaut caching annotations to speed up your application.

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 --build=maven --lang=groovy
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.

Configure the Application

In this sample application, you cache news headlines. Add the Micronaut Caffeine Cache dependency, which adds support for caching with Caffeine.

pom.xml
<dependency>
    <groupId>io.micronaut.cache</groupId>
    <artifactId>micronaut-cache-caffeine</artifactId>
    <scope>compile</scope>
</dependency>

Configure your caches in application.properties:

src/main/resources/application.properties
Tip
Check the properties (maximum-size, expire-after-write and expire-after-access) to configure the size and expiration of your caches. It is important to keep the caches' size under control.

Micronaut Cache API

Imagine a service that retrieves headlines for a given month. This operation may be expensive, and you may want to cache it.

groovy/src/main/groovy/example/micronaut/NewsService.groovy
Tip
If you don’t annotate the class with @CacheConfig, specify the cache name in the cache annotations. E.g. @Cacheable(value = "headlines", parameters = {"month"})

Test the Cache

You can verify that the cache works as expected:

groovy/src/test/groovy/example/micronaut/NewsServiceSpec.groovy

Controller

Create a controller that uses the previous service:

groovy/src/main/groovy/example/micronaut/News.groovy
groovy/src/main/groovy/example/micronaut/NewsController.groovy

Add a test:

groovy/src/test/groovy/example/micronaut/NewsControllerSpec.groovy

Running the Application

To run the application, use the ./mvnw mn:run command, which starts the application on port 8080.

Next Steps

Read about Micronaut Cache Advice. Also, check the Micronaut Cache project for more information.

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