spring-cloud-commons icon indicating copy to clipboard operation
spring-cloud-commons copied to clipboard

Throw hard failure with config first bootstrap mode during AOT processing

Open bclozel opened this issue 3 years ago • 2 comments

When an application uses config first bootstrap (by configuring spring.config.use-legacy-processing=true or using the spring-cloud-starter-bootstrap dependency), AOT processing is not supported.

While this limitation is documented, an application that transitively depends on the starter will see the following behavior:

  • AOT processing succeeds and generates source files
  • the application fails at startup both in native and JVM modes, as bean definitions for the application and auto-configurations were not parsed.

Adding an AOT processor in the starter (and declaring it in aot.factories) that throws a hard failure during AOT processing, describing the problem, could help diagnose such issues.

bclozel avatar Jan 06 '23 16:01 bclozel

I have same problem: spring-cloud-starter-bootstrap dependency make my application build broke

PorcoRosso5 avatar Mar 23 '23 11:03 PorcoRosso5

@PorcoRosso5 as indicated above and as documented, this is not supported. This issue is only here to add a straightforward exception when someone tries to process an app with bootstrap with AOT.

OlgaMaciaszek avatar Mar 23 '23 12:03 OlgaMaciaszek