2015-09-23 77 views
0

如何讀取Spring引導應用程序內的屬性文件中的屬性?在Spring Boot中讀取屬性值

在一個正常的Spring應用程序,我們可以通過在上下文中添加該這樣做:

<context:property-placeholder location="classpath*:my.properties"/>

然後使用參考屬性:

@Value("${my.property.name}") 
Private String name; 
+0

除了下面的答案,您可以使用'@ ConfigurationProperties'並在代碼中使用填充的bean。 –

回答

1

只需使用@SpringBootApplication和你@Value會從application.properties中選擇值或從資源文件夾中選擇yml。