我有几个春季启动服务,所有服务都可以正常工作,除了一个。 如果我使用@Value注释,则一个服务无法解析占位符。我发现其他服务没有任何区别。我正在使用Spring云配置服务器。从配置服务器获取配置文件似乎没有问题:
[main] INFO
org.springframework.cloud.config.client.ConfigServicePropertySourceLocator -
Fetching config from server at: https://myurl:8888
[main] INFO org.springframework.cloud.config.client.ConfigServicePropertySourceLocator - Located environment: name=webapimngmtservice, profiles=[local], label=null, version=41d49e837c4d58b113611c5b8c13979922397238, state=null
[main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: CompositePropertySource [name='configService', propertySources=[MapPropertySource {name='configClient'}]]
[main] INFO de.sharing.webapimngmt.WebapimngmtApplication - The following profiles are active: local
现在堆栈跟踪:
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
[main] ERROR org.springframework.boot.SpringApplication - Application startup failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'webapimngmtApplication': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'keycloak.realm' in value "${keycloak.realm}"
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:372)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1268)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:553)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:312)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:308)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:761)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:543)
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:122)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:693)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:360)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:303)
at de.sharing.webapimngmt.WebapimngmtApplication.main(WebapimngmtApplication.java:41)
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'keycloak.realm' in value "${keycloak.realm}"
at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:174)
at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:126)
at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:236)
at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer$2.resolveStringValue(PropertySourcesPlaceholderConfigurer.java:172)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:837)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1086)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1066)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:585)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:366)
... 15 more
这是我的应用程序类:
@SpringBootApplication
@ComponentScan({ "de.sharing.webapimngmt.configuration", "de.sharing.webapimngmt.api", "de.sharing.webapimngmt.handler", "de.sharing.webapimngmt.service" })
public class WebapimngmtApplication {
public static final String PROVIDER_KEY_SHARING_SERVER = "service-tokenprovider";
@Value("${keycloak.realm}")
private String keycloakRealm;
@Value("${keycloak.auth-server-url}")
private String keycloakServerURL;
@Value("${keycloak.resource}")
private String keycloakClientId;
@Value("${keycloak.credentials.secret}")
private String keycloakClientSecret;
public static void main(String[] args) {
SpringApplication springApplication = new SpringApplication(WebapimngmtApplication.class);
springApplication.addListeners(new ApplicationPidFileWriter());
springApplication.run(args);
}
@Bean
public ServiceClient serviceClient() {
ServiceClient serviceClient = new ServiceClient();
ITokenProvider serviceTokenProvider = new ServiceTokenProvider(this.keycloakServerURL, this.keycloakRealm, this.keycloakClientId, this.keycloakClientSecret);
serviceClient.putTokenProviderToStore(PROVIDER_KEY_SHARING_SERVER, serviceTokenProvider);
return serviceClient;
}
}
这是我的配置文件:
#####SPRING-CLOUD-SETTINGS: ######
spring.cloud.config.enabled=true
#####EUREKA-SETTINGS: ######
eureka.instance.preferIpAdress=true
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone= {cipher}7ad0c41cba27150d50f488359d55eb96f7eaea5ab4fe9c43424048fd580f01f0fb486c7ad825d87e137d1ef3b286f31c5df2830d75ae68d9883cb996273fcec6
#####KEYCLOAK-SETTINGS - GENERAL:######
security.basic.authorize-mode=role
keycloak.enabled=true
keycloak.realm ={cipher}90d6d4e0b515a8fd01d2e8a967c09ed70788348d6045020ed9852e293e515ce8
keycloak.auth-server-url={cipher}83fc4549f1cbbdf4beb94acc2cb3bb49760470f0649c0e957c3adcef6279682a3dc3abde090892095db3498554d4e12694f42175337e2dca9c725f30196bd8eb
keycloak.ssl-required=external
keycloak.autodetect-bearer-only=true
keycloak.resource={cipher}45ff83eec48ca1c3773cc555e8749265e17f4a71441da91caeb845d79cce236a8c7f8bb07c3d6383d8ef025fd7e6b3f8
keycloak.credentials.secret={cipher}d73b63d03ca411fbb57a6e1f5204a2d398f6c1d76cc4747cc7a7ee9ad14e0c0bbc21ddaeb9915bc06d9e100b495476f4e01a128d15a3eab973af0620bef3b5e6
keycloak.use-resource-role-mappings=true
#####KEYCLOAK-SETTINGS- ROLES:######
keycloak.security-constraints[0].securityCollections[0].name=api-doc
keycloak.security-constraints[0].securityCollections[0].patterns[0]=/rest-api.html
keycloak.security-constraints[0].authRoles[0]=API_DOC
#####Service To Service Communication:#####
sharing.service.usermngmt.url=https:/myurl.com/
sharing.service.productmngmt.url=https://myurl.com/
#####TLS-SETTINGS: ######
server.ssl.enabled=true
server.ssl.key-store =classpath:keystore.jks
server.ssl.key-store-type=JKS
server.ssl.key-store-password={cipher}7237044311ad207cca27578772985f317c02f8e11af4c295b182abc1de845f6f
server.ssl.key-alias=myalias
server.ssl.key-password={cipher}7237044311ad207cca27578772985f317c02f8e11af4c295b182abc1de845f6f
server.ssl.trust-store=classpath:keystore.jks
server.ssl.trust-store-type=JKS
server.ssl.trust-store-password={cipher}7237044311ad207cca27578772985f317c02f8e11af4c295b182abc1de845f6f
server.ssl.protocol=TLS
security.basic.enabled=false
####SERVER-SETTINGS#####
security.enable-csrf=false
server.port=5030
server.session.timeout=900
有谁知道我错过了什么?
更新
我只是想通了配置服务器检索一个空的propertySources列表:
{
"name": "webapimngmtservice",
"profiles": [
"dev"
],
"label": null,
"version": "cebc38d6688557e4dec95496544faf0df824aa1a",
"state": null,
"propertySources": []
}
答案 0 :(得分:0)
看起来您缺少@PropertySource注释,它指示要使用的属性文件。
您可以这样使用它,其中something.properties替换为正确的文件名:
std::string::find
注意:还要确保文件位于类路径根目录中(或提供路径),对于我使用的弹簧版本(2.0.1),根目录是@SpringBootApplication
@ComponentScan({ "de.sharing.webapimngmt.configuration", "de.sharing.webapimngmt.api", "de.sharing.webapimngmt.handler", "de.sharing.webapimngmt.service" })
@PropertySource("classpath:something.properties")
public class WebapimngmtApplication {
public static final String PROVIDER_KEY_SHARING_SERVER = "service-tokenprovider";
@Value("${keycloak.realm}")
private String keycloakRealm;
文件夹
答案 1 :(得分:0)
我解决了。问题是spring cloud configserver的配置。我忘了将文件夹添加到搜索路径中:
spring.cloud.config.server.git.searchPaths=service1,service2,webapimngmtservice
这就是我得到一个空列表的原因。