目前大部分的JAVA WEB项目使用的都是MVC,通过Spring IOC来做依赖注入,之前用着没问题,最近需要用到Spring的scheduler来做定时任务,发现每次到执行时间后,都执行了两次,于是在Bean的afterPropertiesSet方法打日志后,发现的确被加载了两次,然后就继续找原因,最终发现了。
原因就是:spring的web.xml里的配置问题,两个contextConfigLocation重复的问题,以下是我的主要配置。
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:applicationContext.xml </param-value> </context-param> <servlet> <servlet-name>appServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>appServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
其中有两个地方,除了外层配置以外,DispatcherServlet下面也有contextConfigLocation的配置,这也是导致了重复加载两次的原因。
解决方案:新增一个applicationContext-mvc.xml,用于配置DispatcherServlet下面的contextConfigLocation。
这个xml里面可以什么都不用写,比如可以为以下内容:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> </beans>
这样,applicationContext.xml就只会被加载一次了,定时任务也就正常了。