forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAEL-6751 - reactive apis with micronaut (eugenp#14824)
* BAEL-6751 - reactive apis with micronaut * BAEL-6751 - reactive apis with micronaut * BAEL-6751 - added error handling * BAEL-6751 - removed unused property * BAEL-6751 - formatting changes * BAEL-6751 - added missing class * BAEL-6751 - moving module to parent pom * BAEL-6751 - moving version number to property
- Loading branch information
Showing
13 changed files
with
505 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## Micronaut Reactive | ||
|
||
This module contains articles about Micronaut Reactive | ||
|
||
### Relevant Articles: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.baeldung</groupId> | ||
<artifactId>micronaut-reactive</artifactId> | ||
<version>0.1</version> | ||
<packaging>${packaging}</packaging> | ||
|
||
<parent> | ||
<groupId>io.micronaut.platform</groupId> | ||
<artifactId>micronaut-parent</artifactId> | ||
<version>4.1.2</version> | ||
</parent> | ||
<properties> | ||
<packaging>jar</packaging> | ||
<jdk.version>17</jdk.version> | ||
<release.version>17</release.version> | ||
<micronaut.runtime>netty</micronaut.runtime> | ||
<micronaut.aot.enabled>false</micronaut.aot.enabled> | ||
<micronaut.aot.packageName>com.baeldung.aot.generated</micronaut.aot.packageName> | ||
<micronaut.test.resources.enabled>true</micronaut.test.resources.enabled> | ||
<exec.mainClass>com.baeldung.micronautreactive.Application</exec.mainClass> | ||
<micronaut-test-resources-testcontainers.version>2.1.0</micronaut-test-resources-testcontainers.version> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>https://repo.maven.apache.org/maven2</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-http-server-netty</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut.validation</groupId> | ||
<artifactId>micronaut-validation</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.validation</groupId> | ||
<artifactId>jakarta.validation-api</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut.data</groupId> | ||
<artifactId>micronaut-data-mongodb</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut.mongodb</groupId> | ||
<artifactId>micronaut-mongo-reactive</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut.reactor</groupId> | ||
<artifactId>micronaut-reactor</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut.serde</groupId> | ||
<artifactId>micronaut-serde-bson</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mongodb</groupId> | ||
<artifactId>mongodb-driver-reactivestreams</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut.testresources</groupId> | ||
<artifactId>micronaut-test-resources-client</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-http-client</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/io.micronaut.testresources/micronaut-test-resources-testcontainers --> | ||
<dependency> | ||
<groupId>io.micronaut.testresources</groupId> | ||
<artifactId>micronaut-test-resources-testcontainers</artifactId> | ||
<version>${micronaut-test-resources-testcontainers.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.micronaut.test</groupId> | ||
<artifactId>micronaut-test-junit5</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>io.micronaut.maven</groupId> | ||
<artifactId>micronaut-maven-plugin</artifactId> | ||
<configuration> | ||
<configFile>aot-${packaging}.properties</configFile> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<!-- Uncomment to enable incremental compilation --> | ||
<!-- <useIncrementalCompilation>false</useIncrementalCompilation> --> | ||
|
||
<annotationProcessorPaths combine.self="override"> | ||
<path> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-inject-java</artifactId> | ||
<version>${micronaut.core.version}</version> | ||
</path> | ||
|
||
<path> | ||
<groupId>io.micronaut.data</groupId> | ||
<artifactId>micronaut-data-processor</artifactId> | ||
<version>${micronaut.data.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-inject</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</path> | ||
<path> | ||
<groupId>io.micronaut.data</groupId> | ||
<artifactId>micronaut-data-document-processor</artifactId> | ||
<version>${micronaut.data.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-inject</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</path> | ||
<path> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-graal</artifactId> | ||
<version>${micronaut.core.version}</version> | ||
</path> | ||
<path> | ||
<groupId>io.micronaut.serde</groupId> | ||
<artifactId>micronaut-serde-processor</artifactId> | ||
<version>${micronaut.serialization.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-inject</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</path> | ||
<path> | ||
<groupId>io.micronaut.validation</groupId> | ||
<artifactId>micronaut-validation-processor</artifactId> | ||
<version>${micronaut.validation.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.micronaut</groupId> | ||
<artifactId>micronaut-inject</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</path> | ||
</annotationProcessorPaths> | ||
<compilerArgs> | ||
<arg>-Amicronaut.processing.group=com.baeldung</arg> | ||
<arg>-Amicronaut.processing.module=micronaut-reactive</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
10 changes: 10 additions & 0 deletions
10
...-modules/micronaut-reactive/src/main/java/com/baeldung/micronautreactive/Application.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.baeldung.micronautreactive; | ||
|
||
import io.micronaut.runtime.Micronaut; | ||
|
||
public class Application { | ||
|
||
public static void main(String[] args) { | ||
Micronaut.run(Application.class, args); | ||
} | ||
} |
82 changes: 82 additions & 0 deletions
82
...naut-reactive/src/main/java/com/baeldung/micronautreactive/controller/BookController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
package com.baeldung.micronautreactive.controller; | ||
|
||
import com.baeldung.micronautreactive.dtos.BookNotFoundException; | ||
import com.baeldung.micronautreactive.entity.Book; | ||
import com.baeldung.micronautreactive.service.BookService; | ||
import io.micronaut.core.annotation.Nullable; | ||
import io.micronaut.http.HttpResponse; | ||
import io.micronaut.http.MutableHttpResponse; | ||
import io.micronaut.http.annotation.Error; | ||
import io.micronaut.http.annotation.*; | ||
import jakarta.validation.ConstraintViolationException; | ||
import jakarta.validation.Valid; | ||
import org.bson.types.ObjectId; | ||
import reactor.core.publisher.Flux; | ||
|
||
@Controller("/books") | ||
public class BookController { | ||
|
||
private final BookService bookService; | ||
|
||
public BookController(BookService bookService) { | ||
this.bookService = bookService; | ||
} | ||
|
||
@Post | ||
public String createBook(@Valid @Body Book book) { | ||
@Nullable ObjectId bookId = bookService.save(book); | ||
if (null == bookId) { | ||
return "Book not created"; | ||
} else { | ||
return "Book created with id: " + bookId; | ||
} | ||
} | ||
|
||
@Put | ||
public String updateBook(@Valid @Body Book book) { | ||
@Nullable ObjectId bookId = bookService.update(book); | ||
if (null == bookId) { | ||
return "Book not updated"; | ||
} else { | ||
return "Book updated with id: " + bookId; | ||
} | ||
} | ||
|
||
@Delete("/{id}") | ||
public String deleteBook(String id) throws BookNotFoundException { | ||
Long bookId = bookService.deleteById(id); | ||
if (1 == bookId) { | ||
return "Book deleted"; | ||
} else { | ||
throw new BookNotFoundException(id); | ||
} | ||
} | ||
|
||
@Get("/{id}") | ||
public Book findById(@PathVariable("id") String identifier) throws BookNotFoundException { | ||
Book book = bookService.findById(identifier); | ||
if (null == book) { | ||
throw new BookNotFoundException(identifier); | ||
} else { | ||
return book; | ||
} | ||
} | ||
|
||
@Get("/published-after") | ||
public Flux<Book> findByYearGreaterThan(@QueryValue(value = "year") int year) { | ||
return bookService.findByYearGreaterThan(year); | ||
} | ||
|
||
@Error(exception = ConstraintViolationException.class) | ||
public MutableHttpResponse<String> onSavedFailed(ConstraintViolationException ex) { | ||
return HttpResponse.badRequest(ex.getConstraintViolations().stream() | ||
.map(cv -> cv.getPropertyPath() + " " + cv.getMessage()) | ||
.toList().toString()); | ||
} | ||
|
||
@Error(exception = BookNotFoundException.class) | ||
public HttpResponse<String> onSavedFailed(BookNotFoundException ex) { | ||
return HttpResponse.notFound(ex.getMessage()); | ||
} | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
...aut-reactive/src/main/java/com/baeldung/micronautreactive/dtos/BookNotFoundException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.baeldung.micronautreactive.dtos; | ||
|
||
public class BookNotFoundException extends Exception { | ||
public BookNotFoundException(String id) { | ||
super("Book with id " + id + " not found"); | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...odules/micronaut-reactive/src/main/java/com/baeldung/micronautreactive/entity/Author.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package com.baeldung.micronautreactive.entity; | ||
|
||
import io.micronaut.core.annotation.Introspected; | ||
import io.micronaut.serde.annotation.Serdeable; | ||
|
||
@Serdeable | ||
public class Author { | ||
private String firstName; | ||
private String lastName; | ||
|
||
public Author() { | ||
} | ||
|
||
public Author(String firstName, String lastName) { | ||
this.firstName = firstName; | ||
this.lastName = lastName; | ||
} | ||
|
||
public String getFirstName() { | ||
return firstName; | ||
} | ||
|
||
public void setFirstName(String firstName) { | ||
this.firstName = firstName; | ||
} | ||
|
||
public String getLastName() { | ||
return lastName; | ||
} | ||
|
||
public void setLastName(String lastName) { | ||
this.lastName = lastName; | ||
} | ||
} |
Oops, something went wrong.