JHipster 整体构建生产失败
JHipster monolithic build production fail
我有一个单一的 JHipster 应用程序。我已经在 .yo-rc.json
中禁用了 "serviceDiscoveryType"
到 false
但是
当我执行以下命令时
./mvnw -Pprod
我收到这个异常
java.lang.IllegalStateException: Could not locate PropertySource and the fail fast property is set, failing
at org.springframework.cloud.config.client.ConfigServicePropertySourceLocator.locate(ConfigServicePropertySourceLocator.java:138)
at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:97)
at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:621)
at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:365)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:310)
at br.com.pactoebytes.GestaoFranquiasApp.main(GestaoFranquiasApp.java:65)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49)
Caused by: org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http://localhost:8761/config/GestaoFranquias/prod/master": Connection refused: connect; nested
e
是错误还是配置问题?
好吧,你可能不需要 bootstrap.yml
,因为你既不使用服务发现,也不使用 Spring 云配置服务器(即 JHipster 注册表),所以你的应用应该只需要 application*.yml
.
尝试删除所有 bootstrap*.yml
文件。
项目重新生成不会删除不需要的文件。
我有一个单一的 JHipster 应用程序。我已经在 .yo-rc.json
中禁用了 "serviceDiscoveryType"
到 false
但是
当我执行以下命令时
./mvnw -Pprod
我收到这个异常
java.lang.IllegalStateException: Could not locate PropertySource and the fail fast property is set, failing
at org.springframework.cloud.config.client.ConfigServicePropertySourceLocator.locate(ConfigServicePropertySourceLocator.java:138)
at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:97)
at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:621)
at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:365)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:310)
at br.com.pactoebytes.GestaoFranquiasApp.main(GestaoFranquiasApp.java:65)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49)
Caused by: org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http://localhost:8761/config/GestaoFranquias/prod/master": Connection refused: connect; nested
e
是错误还是配置问题?
好吧,你可能不需要 bootstrap.yml
,因为你既不使用服务发现,也不使用 Spring 云配置服务器(即 JHipster 注册表),所以你的应用应该只需要 application*.yml
.
尝试删除所有 bootstrap*.yml
文件。
项目重新生成不会删除不需要的文件。