我做的事情是:
- 创建了一个属性文件(data.properties)。
- 创建了一个 Spring.xml(我使用属性占位符)
- 创建了一个 bean 类。
- 我有一个类,我必须使用 url 值。
- 我有一个 web.xml,它具有 context-param,我将 param 值设置为 Spring.xml 文件的路径。
- 我的代码如下:
属性文件:url=sampleurl
春天.xml:
<bean
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath*:data.properties*"/>
</bean>
<bean id="dataSource" class="org.tempuri.DataBeanClass">
<property name="url" value="${url}"></property>
</bean>
豆类
public class DataBeanClass extends PropertyPlaceholderConfigurer{
private String url;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
web.xml 中的条目
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:Spring*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
现在我的问题是我不知道我应该重写 PropertyPlaceholderConfigurer 的哪个方法以及我应该如何设置变量 url 的值,以便我可以使用 getproperty() 方法从其他类调用它。