Radovan Radic

Results 12 issues of Radovan Radic

These are changes we talked about earlier so we can use Raw mapped for Cosmos, unless user configured different one. Later will add more changes for embedded mappings and relations.

This is temp PR just to see if CI passes r2dbc mysql tests with mysql asyncer r2dbc library.

Changes fix for an [earlier issue](https://github.com/micronaut-projects/micronaut-data/issues/1882) and adds fix for [recently reported issue](https://github.com/micronaut-projects/micronaut-data/issues/2707). Basically, when returning `Page` model will execute `DISTINCT COUNT ` because when there are joins, results return...

@dstepanov I started looking at DTO association support as there are few reported issues. Seems like support for `ManyToOne` is not added.

### Expected Behavior Having an entity ``` @MappedEntity public class ExampleDomain { @Id public Long id; public String name; } ``` and repository ``` @JdbcRepository(dialect = Dialect.H2) public interface ExampleDomainRepository...

type: bug

### Expected Behavior Having `Movie` entity ``` @MappedEntity public class Movie { @Id @GeneratedValue private Long id; private String title; @Nullable @Relation(Relation.Kind.MANY_TO_ONE) @MappedProperty("director") private Director director; public Movie(String title) {...

type: bug

@sdelamo This is PR for what I understood was needed for the [ticket](https://github.com/micronaut-projects/micronaut-data/issues/2860). Please let me know if this is enough or something else might make sense to be added,...

type: docs

Projects generating documentation from ascii doc files and having `api:` links will always add `io.micronaut` prefix to the API links even when API does not belong to Micronaut libraries. Would...

## What does this PR do? Adds resource-config.json or else resource locales won't be loaded in GraalVM and an error is thrown: ``` java.util.MissingResourceException: Can't find bundle for base name...