我是靠谱客的博主 现代航空,最近开发中收集的这篇文章主要介绍spring中读不到配置文件问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近碰到一个问题,明明已经配置了<context:property-placeholder location="classpath:bieyang-config.properties" />

启动spring还是报找不到${bieyang.host}类似这种错误,查了一天,各种试验。得出如下结论:

1,首先<context:property-placeholder location="classpath:bieyang-config.properties" />这个配置项目中只能用一次。

2.<context:property-placeholder location="classpath:bieyang-config.properties" />这个配置的意思是把属性加载到context中了,那么问题来了,一般我们的项目中会有2个以上servletcontext,一个是通过listener创建

<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath*:bean/spring-web.xml</param-value>
	</context-param>
<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
还有就是通过servlet方式创建

<servlet>
		<servlet-name>webapp</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>  
    <param-name>contextConfigLocation</param-name>  
    <param-value>classpath:bean/webapp-servlet.xml</param-value>  
  </init-param>  
		<load-on-startup>3</load-on-startup>
	</servlet>
如果你把 <context:property-placeholder location="classpath:bieyang-config.properties" />写到其中一个context的xml中,而你又在两个context中的xml中都要通过属性文件读取属性值,这个是不行的。你只能把需要读取属性文件的配置写到同一个context的xml中。

这里顺便提一下,

    <!-- 启用缓存注解功能,这个是必须的,否则注解不会生效,另外,该注解一定要声明在spring主配置文件中才会生效 -->   
<!--      需要注意的是<cache:annotation-driven/>只会去寻找定义在同一个ApplicationContext下的@Cacheable等缓存注解。  -->
<!--  proxy-target-class="true" 看情况要不要用-->
<!--     <cache:annotation-driven cache-manager="cacheManager"  />     -->
<cache:annotation-driven/>  
      
    

	<!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->
	<mvc:annotation-driven />
这种启用注解功能的配置必须放到
DispatcherServlet对应的servletcontext的xml中才能生效,因为注解比如@cacheable它的作用范围也和servletcontext有关,本人还比较菜没有深入去了解。



最后

以上就是现代航空为你收集整理的spring中读不到配置文件问题的全部内容,希望文章能够帮你解决spring中读不到配置文件问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部