我有一个 Spring MVC,它使用我无法访问代码的外部库。这个外部库使用标准 system.getProperty 调用读取一些属性。我必须在使用服务之前设置这些值。
由于我的应用程序是 Spring MVC 应用程序,我不确定如何初始化这些属性。这是我到目前为止所做的,但由于某种原因,我的值始终为空。
我将属性放在属性文件中/conf/config.properties
my.user=myuser
my.password=mypassowrd
my.connection=(DESCRIPTION=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=TCP)(HOST=xxxx.xxxx.xxxx)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxx.xxx)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=myService)))
然后我在我的applicationContext.xml
<context:annotation-config/>
<context:property-placeholder location="classpath*:conf/config.properties"/>
我阅读了设置初始化代码的文档,您可以实现 InitializingBean 接口,因此我实现了该接口并实现了 afterPropertiesSet() 方法。
private static @Value("${my.user}") String username;
private static @Value("${my.password}") String password;
private static @Value("${my.connection}") String connectionString;
@Override
public void afterPropertiesSet() throws Exception {
System.setProperty("username",username);
System.setProperty("password",password);
System.setProperty("connectionString",connectionString);
}
问题是调用该afterPropertiesSet()
方法时这些值始终为空。
- 上述方法是初始化代码的正确方法,尤其是对于控制器吗?如果第二次调用 Controller 会发生什么?
- 由于初始化,值是否为空?即春天还没有设置它们吗?
- 是否可以在控制器之外添加初始化代码?