web.xml中如何读取properties配置文件中的值? 25
有一个test.properties配置文件,想在web.xml中通过如下方式:<param-value>${config.test}</param-value>读取到t...
有一个test.properties配置文件,想在web.xml中通过如下方式:<param-value>${config.test}</param-value>读取到test.properties配置文件中config.test对应的值
展开
5个回答
展开全部
方法如下:
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:/config/log4j.properties</param-value>
</context-param>
补充:
1. XML文件:
XML一般是指可扩展标记语言,标准通用标记语言的子集,是一种用于标记电子文件使其具有结构性的标记语言。
2.XML文件的优点:
1)XML文档内容和结构完全分离。
2)互操作性强。
3)规范统一。
4)支持多种编码。
5)可扩展性强。
3.如何解析XML文档:
XML在不同的语言中解析XML文档都是一样的,只不过实现的语法不一样,基本的解析方式有两种,一种是SAX方式,是按照XML文件的顺序一步一步解析。另外一种的解析方式DOM方式,而DOM方式解析的关键就是节点。另外还有DOM4J、JDOM等方式。本文介绍的是DOM、DOM4J方式与封装成一个工具类的方式来读取XML文档。
展开全部
<!-- init property files -->
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="locations">
<list>
<value>classpath*:default.properties</value>
</list>
</property>
<bean id="srsClient" class="org.apache.cxf.jaxrs.client.WebClient" factory-method="create">
<constructor-arg type="java.lang.String" value="${srs_api}"/>
<constructor-arg type="boolean" value="true" />
</bean>
value="${srs_api}"/>
default.properties内容
srs_api=http://localhost:8080/杀杀杀/services/
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="locations">
<list>
<value>classpath*:default.properties</value>
</list>
</property>
<bean id="srsClient" class="org.apache.cxf.jaxrs.client.WebClient" factory-method="create">
<constructor-arg type="java.lang.String" value="${srs_api}"/>
<constructor-arg type="boolean" value="true" />
</bean>
value="${srs_api}"/>
default.properties内容
srs_api=http://localhost:8080/杀杀杀/services/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是有个config对象吗,这个应该可以获取配置参数的值....你可以试试,jsp和servlet中都可以获取这个对象。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:/config/log4j.properties</param-value>
</context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:/config/log4j.properties</param-value>
</context-param>
更多追问追答
追问
这种方法我早试过了,没用,我是要把值读取到web.xml中,再由listener读取
追答
org.springframework.web.util.Log4jConfigListener
log4jConfigLocation
classpath:/config/log4j.properties
会自动装配吧!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
请问你的问题解决了吗,我也碰到了这样的问题,怎么破。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询