mn create-app example.micronaut.micronautguide \
--features=yaml,mongo-sync,serialization-bson,serialization-jackson \
--build=maven \
--lang=groovy \
--test=spock
Micronaut MongoDB Synchronous
Learn how to use a blocking MongoClient with a Micronaut application
Authors: Sergio del Amo
Micronaut Version: 4.6.3
1. Getting Started
In this guide, we will create a Micronaut application written in Groovy.
You will use MongoDB for persistence.
2. 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 17 or greater installed with
JAVA_HOME
configured appropriately
3. 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
4. Writing the Application
Create an application using the Micronaut Command Line Interface or with Micronaut Launch.
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 yaml
, mongo-sync
, serialization-bson
, and serialization-jackson
features.
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. |
4.1. POJO
Create Fruit
POJO:
package example.micronaut
import groovy.transform.CompileStatic
import io.micronaut.core.annotation.Creator
import io.micronaut.core.annotation.NonNull
import io.micronaut.core.annotation.Nullable
import io.micronaut.serde.annotation.Serdeable
import org.bson.codecs.pojo.annotations.BsonCreator
import org.bson.codecs.pojo.annotations.BsonProperty
import jakarta.validation.constraints.NotBlank
@CompileStatic
@Serdeable (1)
class Fruit {
@NonNull
@NotBlank (2)
@BsonProperty('name') (3)
private final String name
@Nullable
@BsonProperty('description') (3)
private final String description
Fruit(@NonNull String name) {
this(name, null)
}
@Creator (4)
@BsonCreator(3)
Fruit(@NonNull @BsonProperty('name') String name, (3)
@Nullable @BsonProperty('description') String description) { (3)
this.name = name
this.description = description
}
@NonNull
String getName() {
name
}
@Nullable
String getDescription() {
description
}
}
1 | Declare the @Serdeable annotation at the type level in your source code to allow the type to be serialized or deserialized. |
2 | Use jakarta.validation.constraints Constraints to ensure the data matches your expectations. |
3 | Since the POJO does not have an empty constructor, use the annotations @BsonCreator and BsonProperty to define data conversion between BSON and POJO with the MongoDB Java driver. See POJOs without No-Argument Constructor. |
4 | Annotate with @Creator to provide a hint as to which constructor is the primary constructor. |
4.2. Repository
Create a repository interface to encapsulate the CRUD actions for Fruit
.
package example.micronaut
import io.micronaut.core.annotation.NonNull
import jakarta.validation.Valid
import jakarta.validation.constraints.NotNull
interface FruitRepository {
@NonNull
List<Fruit> list()
void save(@NonNull @NotNull @Valid Fruit fruit) (1)
}
1 | Add @Valid to any method parameter which requires validation. |
4.3. Controller
Create FruitController
:
package example.micronaut
import groovy.transform.CompileStatic
import io.micronaut.core.annotation.NonNull
import io.micronaut.http.annotation.Controller
import io.micronaut.http.annotation.Get
import io.micronaut.http.annotation.Post
import io.micronaut.http.annotation.Status
import io.micronaut.scheduling.TaskExecutors
import io.micronaut.scheduling.annotation.ExecuteOn
import jakarta.validation.Valid
import jakarta.validation.constraints.NotNull
import static io.micronaut.http.HttpStatus.CREATED
@CompileStatic
@Controller('/fruits') (1)
@ExecuteOn(TaskExecutors.BLOCKING) (2)
class FruitController {
private final FruitRepository fruitService
FruitController(FruitRepository fruitService) { (3)
this.fruitService = fruitService
}
@Get(4)
List<Fruit> list() {
fruitService.list()
}
@Post (5)
@Status(CREATED) (6)
void save(@NonNull @NotNull @Valid Fruit fruit) { (7)
fruitService.save(fruit)
}
}
1 | The class is defined as a controller with the @Controller annotation mapped to the path /fruits . |
2 | It is critical that any blocking I/O operations (such as fetching the data from the database) are offloaded to a separate thread pool that does not block the Event loop. |
3 | Use constructor injection to inject a bean of type FruitRepository . |
4 | The @Get annotation maps the list method to an HTTP GET request on /fruits . |
5 | The @Post annotation maps the save method to an HTTP POST request on /fruits . |
6 | You can return void in your controller’s method and specify the HTTP status code via the @Status annotation. |
7 | Add @Valid to any method parameter which requires validation. |
4.4. Configuration
Create a configuration object to encapsulate the MongoDB database name and collection name.
package example.micronaut
import io.micronaut.context.annotation.ConfigurationProperties
import io.micronaut.core.annotation.NonNull
import io.micronaut.core.naming.Named
@ConfigurationProperties('db') (1)
interface MongoDbConfiguration extends Named {
@NonNull
String getCollection()
}
1 | The @ConfigurationProperties annotation takes the configuration prefix. |
Define the values via configuration:
db:
name: 'fruit'
collection: 'fruit'
4.5. MongoDB repository
Implement FruitRepository
by using a MongoDbClient
package example.micronaut
import com.mongodb.client.MongoClient
import com.mongodb.client.MongoCollection
import io.micronaut.core.annotation.NonNull
import jakarta.inject.Singleton
import jakarta.validation.Valid
import jakarta.validation.constraints.NotNull
@Singleton (1)
class MongoDbFruitRepository implements FruitRepository {
private final MongoDbConfiguration mongoConf
private final MongoClient mongoClient
MongoDbFruitRepository(MongoDbConfiguration mongoConf, (2)
MongoClient mongoClient) { (3)
this.mongoConf = mongoConf
this.mongoClient = mongoClient
}
@Override
void save(@NonNull @NotNull @Valid Fruit fruit) {
collection.insertOne(fruit)
}
@Override
@NonNull
List<Fruit> list() {
collection.find().into([])
}
@NonNull
private MongoCollection<Fruit> getCollection() {
return mongoClient.getDatabase(mongoConf.name)
.getCollection(mongoConf.collection, Fruit)
}
}
1 | Use jakarta.inject.Singleton to designate a class as a singleton. |
2 | Use constructor injection to inject a bean of type MongoDbConfiguration . |
3 | Use constructor injection to inject a bean of type MongoDbClient . |
By using the feature mongo-sync
, the application includes the following dependency:
<dependency>
<groupId>io.micronaut.mongodb</groupId>
<artifactId>micronaut-mongo-sync</artifactId>
<scope>compile</scope>
</dependency>
This registers a blocking MongoClient, which you can inject in other Micronaut beans as illustrated in the above code sample.
4.6. Test
Add a Micronaut declarative HTTP Client to src/test
to ease the testing of the application’s API.
package example.micronaut
import io.micronaut.core.annotation.NonNull
import io.micronaut.http.HttpStatus
import io.micronaut.http.annotation.Get
import io.micronaut.http.annotation.Post
import io.micronaut.http.client.annotation.Client
import jakarta.validation.Valid
import jakarta.validation.constraints.NotNull
@Client('/fruits')
interface FruitClient {
@Post
@NonNull
HttpStatus save(@NonNull @NotNull @Valid Fruit fruit)
@NonNull
@Get
List<Fruit> findAll()
}
By using the feature mongo-sync
, the application includes the following test dependencies:
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mongodb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
Test Resources will provide us with a MongoDB instance for local testing and execution.
Create a test:
package example.micronaut
import io.micronaut.http.HttpStatus
import io.micronaut.test.extensions.spock.annotation.MicronautTest
import jakarta.inject.Inject
import spock.lang.Specification
import static io.micronaut.http.HttpStatus.CREATED
@MicronautTest
class FruitControllerSpec extends Specification {
@Inject
FruitClient fruitClient
void fruitsEndpointInteractsWithMongo() {
when:
List<Fruit> fruits = fruitClient.findAll()
then:
!fruits
when:
HttpStatus status = fruitClient.save(new Fruit('banana'))
then:
CREATED == status
when:
fruits = fruitClient.findAll()
then:
fruits
'banana' == fruits[0].name
null == fruits[0].description
when:
status = fruitClient.save(new Fruit('Apple', 'Keeps the doctor away'))
then:
CREATED == status
when:
fruits = fruitClient.findAll()
then:
fruits.find { it.description == 'Keeps the doctor away' }
}
}
5. Test Resources
When the application is started locally — either under test or by running the application — resolution of the property mongodb.uri
is detected and the Test Resources service will start a local MongoDB docker container, and inject the properties required to use this as the datasource.
When running under production, you should replace this property with the location of your production MongoDB instance via an environment variable.
MONGODB_URI=mongodb://username:password@production-server:27017/databaseName
For more information, see the MongoDB section of the Test Resources documentation.
6. Testing the Application
To run the tests:
./mvnw test
7. Running the Application
To run the application, use the ./mvnw mn:run
command, which starts the application on port 8080.
curl -d '{"name":"Pear"}'
-H "Content-Type: application/json"
-X POST http://localhost:8080/fruits
curl -i localhost:8080/fruits
HTTP/1.1 200 OK
date: Wed, 15 Sep 2021 12:40:15 GMT
Content-Type: application/json
content-length: 110
connection: keep-alive
[{"name":"Pear"}]
curl -d '{"name":"Pear"}'
-H "Content-Type: application/json"
-X POST http://localhost:8080/fruits
curl -i localhost:8080/fruits
HTTP/1.1 200 OK
date: Wed, 15 Sep 2021 12:40:15 GMT
Content-Type: application/json
content-length: 110
connection: keep-alive
[{"name":"Pear"}]
8. Next steps
Explore more features with Micronaut Guides.
9. Next Steps
Read more about the integration between the Micronaut framework and MongoDB.
10. Help with the Micronaut Framework
The Micronaut Foundation sponsored the creation of this Guide. A variety of consulting and support services are available.
11. License
All guides are released with an Apache license 2.0 license for the code and a Creative Commons Attribution 4.0 license for the writing and media (images…). |