Benoit Heinrich

Results 4 comments of Benoit Heinrich

Thanks @marcingrzejszczak for looking so quickly at this report :) In your new title you're saying "can't reference an object", does it mean that this could work if what I...

Do you know when the 4.0.0 is supposed to be released ?

I've found a workaround to my issue by creating a `ProductRepositoryMicronaut` interface in the micronaut-restapi module: ```java package com.example.repository; import com.example.model.Product; import io.micronaut.data.annotation.Repository; import io.micronaut.data.repository.CrudRepository; @Repository public interface ProductRepositoryMicronaut extends...

But isn't the information available at compile time when the **spring-module** compiles ? Checking at the [documentation](https://micronaut-projects.github.io/micronaut-spring/latest/guide/index.html#springDataAnnotations) it says that the [@Repository](https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/stereotype/Repository.html) from spring is automatically mapped to the [@Repository](https://micronaut-projects.github.io/micronaut-data/latest/apidata/annotation/Repository.html)...