micronaut-data-r2dbc-repository-gradle

Micronaut Test Testcontainers https://testcontainers.com/guides/introducing-testcontainers/ https://testcontainers.com/guides/getting-started-with-testcontainers-for-java/ https://testcontainers.com/ GraalVM Description The example exposes some REST endpoints and…

R2DBC-PostgreSQL-example

Postgresql setup: ConnectionFactory connectionFactory = new PostgresqlConnectionFactory(PostgresqlConnectionConfiguration.builder() .host("localhost") .port(5432) .username("postgres") .password("postgres") .database("reactivedb") .build()); Create db…