Christian Ullenboom
Christian Ullenboom
Happy waiting for the next release.
Using the example from the tutorial the result is:  The folder icon is missing, and the box is too high.
I just get a corrupt PDF, 15 bytes. A XML file is getting created and removed.
I can write natives queries like @Query( value = "SELECT * FROM Profile WHERE hornlength > ?1 ORDER BY hornlength DESC", nativeQuery = true ) Page findProfilesWithHornlengthGreaterThan( short minHornlength, Pageable...
Currently, the HAL explorer is under the root path, but this will collide with web applications. Please make the path adjustable via a configuration property like spring.data.rest.hal-explorer-base-path=/api
Change the example to reflect the changes according to https://spring.io/blog/2022/02/21/spring-security-without-the-websecurityconfigureradapter
request for a javadoc improvement. some classes like https://docs.spring.io/spring-framework/docs/6.0.0-SNAPSHOT/javadoc-api/org/springframework/cache/annotation/Cacheable.html makes it clear that some attributes are SpEL: on the other hand, a class like https://docs.spring.io/spring-framework/docs/6.0.0-SNAPSHOT/javadoc-api/org/springframework/scheduling/annotation/Scheduled.html makes no references to the...
https://github.com/christian-schlichtherle/truevfs/blob/90690d7718f3f190721e28d8675e178dd5698a56/truevfs-access/src/main/java/net/java/truevfs/access/TFileSystem.java#L508 So traversing via `walkFileTree(...)` and `walk(...)` will be possible
https://github.com/christian-schlichtherle/truevfs/blob/90690d7718f3f190721e28d8675e178dd5698a56/truevfs-access/src/main/java/net/java/truevfs/access/TFileSystem.java#L206 This could work as a quick-fix: ``` public PathMatcher getPathMatcher(String syntaxAndPattern) { return FileSystems.getDefault().getPathMatcher( syntaxAndPattern ); } ```