我是Spring MVC的新手,我正在做一些测试。我试图找到关于这个问题的一些答案,但是大多数都引用了Spring 3.11并且我使用的是最后一个版本:4.1.6。
我想在应用程序启动时加载“.properties”文件,并使用其中的信息创建一个bean,以便在应用程序的所有上下文中访问它。
到目前为止,我可以在 servlet-context.xml
中加载文件<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
...
<context:property-placeholder location="classpath*:resources/Resources.properties" />
</beans:beans>
我认为(不确定)我在 root-context.xml 中正确声明了bean:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- Root Context: defines shared resources visible to all other web components -->
<bean id="Resources" class="ar.com.violenciaesmentir.blog.resources.ResourcesDB"/>
</beans>
而且我也认为我正确地制作了豆子,但我真的不知道注释是否正确:
package ar.com.violenciaesmentir.blog.resources;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
@Service
public class ResourcesDB {
@Value("DB.NAME")
private String name;
@Value("DB.TYPE")
private String type;
@Value("DB.USER")
private String user;
@Value("DB.PASS")
private String pass;
@Value("DB.DRIVER")
private String driver;
@Value("DB.URL")
private String url;
@Value("DB.MAXACTIVE")
private String maxActive;
@Value("DB.MAXIDLE")
private String maxIdle;
@Value("DB.MAXWAIT")
private String maxWait;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getPass() {
return pass;
}
public void setPass(String pass) {
this.pass = pass;
}
public String getDriver() {
return driver;
}
public void setDriver(String driver) {
this.driver = driver;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getMaxActive() {
return maxActive;
}
public void setMaxActive(String maxActive) {
this.maxActive = maxActive;
}
public String getMaxIdle() {
return maxIdle;
}
public void setMaxIdle(String maxIdle) {
this.maxIdle = maxIdle;
}
public String getMaxWait() {
return maxWait;
}
public void setMaxWait(String maxWait) {
this.maxWait = maxWait;
}
}
我的“.properties”文件:
DB.NAME = jdbc/Blog
DB.TYPE = javax.sql.DataSource
DB.USER = blog
DB.PASS = blog
DB.DRIVER = oracle.jdbc.driver.OracleDriver
DB.URL = jdbc:oracle:thin:@localhost:1521:xe
DB.MAXACTIVE = 20
DB.MAXIDLE = 5
DB.MAXWAIT = 10000
我认为引用是可以的,因为它在启动服务器时给了我麻烦,说它找不到“name”的属性,但是我做错了注释然后我修复了。
我想要的是将bean初始化并且可以在DB类中使用属性,如:
@ManagedAttribute
private ResourcesDB resources;
...
public void foo() {
String dbName = resources.getName();
}
当我尝试时,资源为空。我做错了什么?
- - - - 的更新 -----
好吧,我可以通过一些尝试来解决问题,然后给出答案。首先,我更正了 @Value ,例如(“$ {DB.NAME}”),并为服务注释添加了一个值 @Service(value = “资源”)即可。
然后,我要做的唯一改变是在 servlet-context.xml 中。而不是:
<context:property-placeholder location="classpath*:resources/Resources.properties" />
我用过:
<beans:bean id="configuracion" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<beans:property name="location" value="classpath:Resources.properties"/>
</beans:bean>
使用 @Autowire 代替 @ManagedBean 来访问该bean。
答案 0 :(得分:0)
您的@Value语法不正确。它应该是@Value("${DB.NAME}")
。
您可能还需要将其添加到XML配置中:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:resources/Resources.properties" />
</bean>
该位置的值可能会有所不同,不确定您如何构建和构建工件。
答案 1 :(得分:0)
您的代码中有两件事存在缺陷。
@Value
表达式错误<context:property-placeholder />
必须与Bean 使用@Value
时,您必须使用占位符,默认情况下${property name}
您只是使用名称。因此,请更新您的注释以反映这一点。即@Value("${DB.NAME}
。
接下来,您已在<context:property-placeholder />
加载的上下文中定义了DispatcherServlet
,而您的bean由ContextLoaderListener
加载。属性占位符bean是BeanFactoryPostProcessor
,它只对在相同上下文中加载的bean定义进行操作。基本上,您的bean定义位于父上下文中,而您的占位符位于子上下文中。
将move <context:property-placeholder />
修复为定义bean的相同上下文。
使用@ManagedAttribute
或@Autowired
代替@Inject
这是一个JSF注释。如果您没有<context:component-scan />
添加<context:annotation-driven />
。