3

自动检测到bean时是否可以将属性设置为?

我有一个需要读取文本文件的 bean,我想注入路径,但是这个 bean 是自动检测所有 bean 的 web 应用程序的一部分。

4

1 回答 1

3

是的,只需使用注释注入它们@Value,例如:

@Service("myService")
public class MyService

    @Value("${myProperty}")
    String whatever;
...

然后在应用程序上下文中:

<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");
于 2012-06-29T11:01:51.913 回答