Spring mvc 定时器 调用两次


原先配置如下:

  
    contextConfigLocation
    classpath*:config/*.xml
  
  
    springMVC
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath*:config/spring-mvc.xml
    
    1
  


因为 配置文件 pring-mvc.xml加载了两次,则导致 定时器同时执行两次 

修改如下:


  
    contextConfigLocation
    classpath*:config/spring-common.xml
  
  
    springMVC
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath*:config/spring-mvc.xml
    
    1
  



你可能感兴趣的:(Spring)