springmvc中如何从配置文件中读取信息
1个回答
2018-07-04 · 国内最优秀java资源共享平台
关注
展开全部
1、第一步,先新建一个.properties文件,
app.properties里面内容
admin=admin
test=test
2、第二步,新建一个xml文件,在applicationContext.xml,
<!-- 用来解析Java Properties属性文件值(注意class指定的类)-->
<bean id="placeholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:app.properties</value>
</list>
</property>
</bean>
<!-- 把properties里面的信息读进来: -->
<bean id="report" class="java.lang.String">
<constructor-arg value="${admin}"/>
</bean>
app.properties里面内容
admin=admin
test=test
2、第二步,新建一个xml文件,在applicationContext.xml,
<!-- 用来解析Java Properties属性文件值(注意class指定的类)-->
<bean id="placeholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:app.properties</value>
</list>
</property>
</bean>
<!-- 把properties里面的信息读进来: -->
<bean id="report" class="java.lang.String">
<constructor-arg value="${admin}"/>
</bean>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询