Sébastien Deleuze
Sébastien Deleuze
Not an easy one. We could introduce some `MockMvc.restDocsFoo()` extensions but that would not be very elegant. @wilkinsona Do we have a way to set this request attribute as a...
Indeed it seems to be the only reasonable solution.
See also https://github.com/spring-projects/spring-hateoas/issues/444 related issue
Sorry for the delay of my response. > It's a shame that for this one piece, the Kotlin DSL isn't quite as elegant as the Java equivalent. I'm not sure...
Tested with Petclinic, Spring Boot `3.3.0-RC1` and Hibernate `6.5.0`, works as expected.
@dnestoro I think you can close this issue.
Fix on Spring Framework side by https://github.com/spring-projects/spring-framework/issues/32842 and https://github.com/spring-projects/spring-framework/issues/32967.
@neogeogre Looks like missing logger reflection entries, similar to what I did in https://github.com/oracle/graalvm-reachability-metadata/pull/298 for Hibernate ORM 6.2. Could you maybe try to craft a PR to add missing reflection...
Should be fixed by #502. As a workaround, you can use with Spring: ```java @SpringBootApplication @ImportRuntimeHints(DemoApplication.Hints.class) public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } static...
I tend to agree, and am declining the proposed additional extension.