spring+quartz定时任务出现重复调用

  1. 出现问题的原因
    应该都是将quartz配置和spring配置放在了同一个xml文件中,导致被容器扫描了两次
  2. 如何解决呢?
    其实你看了会觉得so easy 将quartz配置单独放在一个xml文件中,在web.xml中进行配置即可

1、新建quartz配置xml文件



    
    
	
	   
          
         
         
		   
        
	 
	
	  
         
         
	
	
     
         
     
    

2、将quartz配置文件配到web.xml中


    org.springframework.web.context.ContextLoaderListener
  
  
    contextConfigLocation
    classpath:*.quartz.xml
  

ok 结束!赶快去尝试修改一下吧!

你可能感兴趣的:(java,quartz,spring,java)