是否可以在自动检测到bean时将属性设置为bean?
我有一个需要读取文本文件的bean而且我想注入路径,但是这个bean是Web应用程序的一部分,其中所有bean都被自动检测到。
答案 0 :(得分:3)
是的,只需使用@Value
annoation注入它们,例如:
@Service("myService")
public class MyService
@Value("${myProperty}")
String whatever;
...
然后在app上下文中:
<context:property-placeholder
location="classpath:application.properties"
ignore-unresolvable="true"
/>
在类路径中包含你的字符串变量的文件application.properties(通常是通过src / main / resources)。
或者您可以确保您的文件位于类路径上,并将其引用为类路径资源
final org.springframework.core.io.Resource myFile = new ClassPathResource("MyTextFile.text");