最佳答案
是的,只需使用@Value注释注入它们,例如:
原文链接:/spring/531819.html@Service("myService")
public class MyService
@Value("${myProperty}")
String whatever;
...
然后在应用程序上下文中:
<context:property-placeholder
location="classpath:application.properties"
ignore-unresolvable="true"
/>
将包含字符串vars的文件application.properties粘贴到类路径中(通常通过src / main / resources).
或者,您可以确保文件位于类路径上,并将其作为类路径资源引用
final org.springframework.core.io.Resource myFile = new ClassPathResource("MyTextFile.text");