spring-native icon indicating copy to clipboard operation
spring-native copied to clipboard

Spring Native is now superseded by Spring Boot 3 official native support

Results 101 spring-native issues
Sort by recently updated
recently updated
newest added

Inspired by spring-projects-experimental/spring-graalvm-native#125, we should leverage VS code [remote containers](https://code.visualstudio.com/docs/remote/containers) out of the box in samples, and also configure it to use [`-H:GenerateDebugInfo=1`](https://github.com/oracle/graal/blob/master/substratevm/DEBUGINFO.md) and `gdb` integration for debugging Spring Boot...

type: documentation

org.springframework.experimental.aot = 0.11.1 If I run in continuous mode: ``` ./gradlew -t test ``` It runs and re-runs the tests infinitely due to: ``` new directory: /home/jw/projects/kotlin-bars/server/build/generated/sources/aotTest new file: /home/jw/projects/kotlin-bars/server/build/generated/sources/aotTest/org/springframework/aot/TestContextBootstrapInitializer.java...

status: waiting-for-triage
status: feedback-provided

Reduce the memory footprint and increase the compatibility by removing the need for class resources (configuration, parameter discovery, etc.). For configuration that could potentially mean to use functional configuration by...

To avoid to ship `FooProperties` reflection config for each Spring Boot properties.

type: enhancement

Various samples shed some lights on different use cases around factory beans that we should streamline: * Using a `ResolvableType` on a `BeanDefinition` that uses a factory bean is problematic...

type: enhancement
status: blocked

If a configuration class is scanned, it is not linked back to the class that triggered component scan. As a result, links to this classes are not available either. Use...

type: bug

Got the problem during compilation. Is it possible to add this flag `--enable-preview` somehow to `spring-aot-maven-plugin:0.11.1:generate` phase? ``` java.lang.IllegalStateException: Failed to introspect Class [MediaPlaylistController] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@6f94fa3e] at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:481) at...

type: enhancement

Dear team, I tried to run an app using `@PropertySource`. It works fine with Spring boot standard but not once converted to Native. I'm using Spring native 0.11.0-RC1 / Spring...

type: enhancement

I've got a Graal + Spring Cloud Gateway app that I can't quite get over the GraalVM compilation hump. The code is [in this repository](https://github.com/joshlong/gateway-and-graalvm/tree/master). And there's a `compile.sh` at...

type: compatibility