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

**Describe the issue** 1. route setting application.yml 2. (not native build) run test, make jar, run jar works. 3. native build success. 4. run error command ``` $ ./target/demo ```...

type: enhancement

I'm trying to run a native image with Kubernetes support via the fabric8 client. It loads a few model hierarchies like `io.fabric8.kubernetes.api.model.Config`, `.Service`, `.EndpointsList`, etc for operations. Each hierarchy is...

type: enhancement

I implement a `WebServerFactoryCustomizer` for having file and directory listing in Tomcat: ``` @Component public class MyTomcatWebServerCustomizer implements WebServerFactoryCustomizer { @Override public void customize(TomcatServletWebServerFactory factory) { TomcatContextCustomizer tomcatContextCustomizer = new...

type: enhancement

When using a naming strategy with version `0.10.2`, a `@TypeHint` has to be added manually. Otherwise on startup this exception is thrown: ``` com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Class com.fasterxml.jackson.databind.PropertyNamingStrategies$SnakeCaseStrategy has no default (no...

type: enhancement

Hi, Is there any word on support for Spring Cloud Kubernetes? I have checked the support section of the documents and nothing is mentioned. Here is a minimal example: [spring-cloud-kubernetes-native-example.zip](https://github.com/spring-projects-experimental/spring-native/files/8608986/spring-cloud-kubernetes-native-example.zip)...

type: enhancement

Running an application using the Gradle configuration cache `./gradlew --configuration-cache bootRun` with v0.11.5 fails with this output: ``` FAILURE: Build failed with an exception. * What went wrong: Configuration cache...

type: enhancement

## Overview As discussed in https://github.com/spring-projects-experimental/spring-native/issues/1169#issuecomment-967002442, `SpringBootDependencyInjectionTestExecutionListener` is no longer used in AOT and native tests. Consequently, Spring Boot's `ConditionEvaluationReport` support has been lost for Spring integration tests. ## Analysis...

type: enhancement

While trying to track down an issue with the HttpComponentsClientHttpRequestFactory I found the following. I have a @NativeHint similar to the ClientHttpRequestFactoryHints. @NativeHint(types = { @TypeHint(types = org.springframework.http.client.HttpComponentsClientHttpRequestFactory.class, methods =...

type: bug

I am trying to build a spring cloud config server instance to run in native mode, using sping native. According to the documentation https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/, "Spring Native 0.11.3 has been tested...

type: bug
status: on-hold

Hi, I have this project [okta-springboot](https://github.com/ivangfr/okta-springboot) where, in the test case `SimpleServiceControllerTest` class, I use `TestPropertySource` annotation to change some properties. However, it's not working. The project uses **spring-boot** `2.6.6`...

type: compatibility