本文主要是介绍Spring 使用注解定时任务@Scheduled 会执行两遍,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在解决问题前先了解下<context-param>配置和<init-param>(复制来的)
1.<context-param>配置是是一组键值对,比如:<context-param><param-name>home-page</param-name><param-value>home.jsp</param-value></context-param>param-name是键,相当于就是参数名,param-value是值,相当于参数值2.当服务器启动时,服务器会读取web.xml配置,当读到<listener></listener>和<context-param></context-param>这两个节点的时候,容器会将这两个节点set到ServletContext(上下文对象)中,这样我们在程序中就能通过这个上下文对象去取得我们这个配置值。具体代码实现:String sHomePage = getServletContext().getInitParameter("home-page");通过上面这句代码,我们就可以取得web.xml中配置的home.jsp这个值。说白了,他就相当于设定了一个固定值,我们可以在程序中去使用它。就这么个作用。注:我看到很多文章都是把它和监听一起说的,写说这个配置在监听中怎么用。我要说的他并不是为了监听去设定的。程序中的所有servlet可以利用这个值,我在这里强调一下这一点,希望大家不要被误导<context-param>配置和<init-param>的区别:<servlet><servlet-name>ServletInit</servlet-name><servlet-class>com.sunrain.datalk.wserver.util.servlet.ServletInit</servlet-class><init-param><param-name>home-page</param-name><param-value>home.jsp</param-value></init-param></servlet>1.我们可以看到<init-param>是放在一个servlet内的,所以这个参数是只针对某一个servlet而言的所以他们的区别就有点像全局变量和和局部变量的<context-param>是针对整个项目,所有的servlet都可以取得使用,<init-param>只能是在那个servlet下面配置,就在那个servlet里面调用
1.代码
2.异常
3.分析问题
正常情况是不可能执行两遍,猜测哪个配置文件导致定时任务被加载两次。
因为使用注解先猜想spring-mvc.xml 里某个配置导致重复加载。下面这段配置并没有什么大问题。
不足的就是:<context:component-scan/>包含了<context:annotation-config/>的功能,在大部分情况下,都会直接使用<context:component-scan/>进行注解驱动注册和包扫描功能。这边我贴原配置,没去掉。
<context:annotation-config /><task:annotation-driven/><!-- 支持spring3 mvc新的注解类型 --><mvc:annotation-driven /><!-- 自动扫描base-package指定的包下所有注解,包括mvc的注解,故mvc文件不用再扫描控制器<context:component-scan base-package="xxxx" />了 --><context:component-scan base-package="com.xxxx"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/> </context:component-scan>
然后猜想spring-mvc.xml内部配置没问题,因为是spring-mvc项目会不会是web.xml配置导致spring-mvc.xml重复加载。
配置如下:
web.xml
<context-param><param-name>contextConfigLocation</param-name><param-value>classpath:spring-*.xml</param-value></context-param><context-param><param-name>log4jConfigLocation</param-name><param-value>classpath:log4j.properties</param-value></context-param><context-param><param-name>log4jRefreshInterval</param-name><param-value>6000</param-value></context-param><servlet><servlet-name>springMvc</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>/WEB-INF/classes/spring-mvc.xml</param-value></init-param><load-on-startup>1</load-on-startup></servlet>
5.下图很容易看出确实被加载了两次
6.去掉
<servlet><servlet-name>springMvc</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><!--<param-value>/WEB-INF/classes/spring-mvc.xml</param-value>--><param-value></param-value></init-param><load-on-startup>1</load-on-startup></servlet>
7.控制台输出
[2020-10-27 10:12:07] [INFO] [com...scheduler.LivePushPlan] [101] - 当前无直播课程!
[2020-10-27 10:12:10] [INFO] [com...scheduler.LivePushPlan] [82] - pool-1-thread-1定时任务器,每隔5分钟触发一次!
[2020-10-27 10:12:10] [INFO] [com...scheduler.LivePushPlan] [86] - pool-1-thread-1当前推送被锁定无法执行!!!
[2020-10-27 10:12:15] [INFO] [com...scheduler.LivePushPlan] [82] - pool-1-thread-1定时任务器,每隔5分钟触发一次!
[2020-10-27 10:12:15] [INFO] [com...scheduler.LivePushPlan] [86] - pool-1-thread-1当前推送被锁定无法执行!!!
[2020-10-27 10:12:20] [INFO] [com...scheduler.LivePushPlan] [82] - pool-1-thread-1定时任务器,每隔5分钟触发一次!
8.正常
9.context-param和init-param两种配置区别(转)
context-param和init-param区别
web.xml里面可以定义两种参数:
(1)application范围内的参数,存放在servletcontext中,在web.xml中配置如下:
<context-param><param-name>context/param</param-name><param-value>avalible during application</param-value>
</context-param>
(2)servlet范围内的参数,只能在servlet的init()方法中取得,在web.xml中配置如下:
<servlet><servlet-name>MainServlet</servlet-name><servlet-class>com.wes.controller.MainServlet</servlet-class><init-param><param-name>param1</param-name><param-value>avalible in servlet init()</param-value></init-param><load-on-startup>0</load-on-startup>
</servlet>
在servlet中可以通过代码分别取用:
package com.wes.controller;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
public class MainServlet extends HttpServlet ...{public MainServlet() ...{super();}public void init() throws ServletException ...{System.out.println("下面的两个参数param1是在servlet中存放的");System.out.println(this.getInitParameter("param1"));System.out.println("下面的参数是存放在servletcontext中的");System.out.println(getServletContext().getInitParameter("context/param"));}
}
第一种参数在servlet里面可以通过getServletContext().getInitParameter("context/param")得到
第二种参数只能在servlet的init()方法中通过this.getInitParameter("param1")取得.
这篇关于Spring 使用注解定时任务@Scheduled 会执行两遍的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!