You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring Boot 3.2.0 Introduces nested jars support, with a new NestedFileSystemProvider.
This is not automatically loaded into the resulting jar with the current implementation.
One workaround for now is to use the spring-boot-loader-classic which results in usage of the old file loader, which does not produce resources with the jar:nested: property.
The text was updated successfully, but these errors were encountered:
Spring Boot 3.2.0 Introduces nested jars support, with a new NestedFileSystemProvider.
This is not automatically loaded into the resulting jar with the current implementation.
It seems like META-INF/services/java.nio.file.spi.FileSystemProvider is not loaded into the resulting jar when packaged.
When inspecting the jar, META-INF only contains the MANIFEST.MF file:
while a similiar example with Maven correctly has the
META-INF/services/java.nio.file.spi.FileSystemProvider
file correctly packagedSee https://github.com/hjellek/rules_spring/blob/spring-boot-3.2.1-example/examples/helloworld/src/test/java/com/sample/SampleNesteFileSystemUnitTest.java as a simple/naive example of the error.
One workaround for now is to use the spring-boot-loader-classic which results in usage of the old file loader, which does not produce resources with the
jar:nested:
property.The text was updated successfully, but these errors were encountered: