1
你知道Spring Boot是否支持@ConfigurationProperties
中的佔位符? 當我設置spring.boot.admin.client.serviceUrl=http://${server.address}:${server.port}${server.context-path}
它將綁定到AdminClientProperties,但Spring Boot不會替換佔位符。Spring Boot中的佔位符@ConfigurationProperties
我還沒有在文檔中找到任何關於此的信息。
您使用哪種Spring Boot版本?這在1.2.0 https://github.com/spring-projects/spring-boot/issues/1301中得到修復。我剛剛在1.2.6中測試了它,即使在使用自定義位置時,佔位符也已解析:@ConfigurationProperties(prefix =「props」,locations =「classpath:example.properties」) –
我使用Spring Boot 1.2.5。據我所知,爲了提供這種行爲,我必須定義位置屬性。額外使用Spring Cloud Config時,我應該如何定義位置? –