问题 I have an unexpected behavior with available locales when native build. I have only one locale available in native mode. My application is very simple : @ApplicationPath("/api") public class ApplicationPathConfiguration extends Application { } @Path("/locales") public class LocaleController { @GET @Produces(MediaType.APPLICATION_JSON) public Locale[] get() { return Locale.getAvailableLocales(); } } After checkout if I launch the application in dev mode : mvn quarkus:dev You can call the