1. 程式人生 > >spring定時器詳解

spring定時器詳解

1,配置spring定時器,

  第一步: 引入jar

<!--quartz配置 -->
<dependency>
  <groupId>org.quartz-scheduler</groupId>
  <artifactId>quartz</artifactId>
  <version>2.2.1</version>
</dependency>

第二部: 配置web.xml
<?xml version="1.0" encoding="UTF-8"?>
<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:spring-base.xml</param-value>
	</context-param>
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	<filter>
		<filter-name>characterEncodingFilter</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>UTF-8</param-value>
		</init-param>
		<init-param>
			<param-name>forceEncoding</param-name>
			<param-value>true</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>characterEncodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<servlet>
		<servlet-name>springmvc</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<!--加上了這個 定時器就不會同時執行兩次了 -->
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value></param-value>
		</init-param>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>classpath:spring-mvc.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
		<async-supported>true</async-supported>
	</servlet>
	<servlet-mapping>
		<servlet-name>springmvc</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>


	<!-- 配置監聽器:保證在web應用關閉的時候釋放與掉這個web應用相關的class loader和由它管理的類 -->
	<listener>
		<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
	</listener>
	<listener>
		<listener-class>com.init.StartInit</listener-class>
	</listener>

	<welcome-file-list>

		<welcome-file>index.jsp</welcome-file>

	</welcome-file-list>
</web-app>

第三步: 配置spring-mvc.xml,必須在spring-mvc.xml中加上此配置
<!-- 開啟這個配置,spring才能識別@Scheduled註解 -->
	<task:annotation-driven scheduler="qbScheduler"		mode="proxy" />
	<task:scheduler id="qbScheduler" pool-size="10" />

第四步: 在spring可以掃描的包下,建立定時器類
@Component
public class DataQuartz {
	
	@Autowired
	private DataService dataServise;
	
	private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
	private SimpleDateFormat sdfDay = new SimpleDateFormat("d");

	//	"0 0 12 * * ?" 每天中午12點觸發 
	//	"0 15 10 ? * *" 每天上午10:15觸發 
	//	"0 15 10 * * ?" 每天上午10:15觸發 
	//	"0 15 10 * * ? *" 每天上午10:15觸發 
	//	"0 15 10 * * ? 2005" 2005年的每天上午10:15觸發 
	//	"0 * 14 * * ?" 在每天下午2點到下午2:59期間的每1分鐘觸發 
	//	"0 0/5 14 * * ?" 在每天下午2點到下午2:55期間的每5分鐘觸發 
	//	"0 0/5 14,18 * * ?" 在每天下午2點到2:55期間和下午6點到6:55期間的每5分鐘觸發 
	//	"0 0-5 14 * * ?" 在每天下午2點到下午2:05期間的每1分鐘觸發 
	//	"0 10,44 14 ? 3 WED" 每年三月的星期三的下午2:10和2:44觸發 
	//	"0 15 10 ? * MON-FRI" 週一至週五的上午10:15觸發 
	//	"0 15 10 15 * ?" 每月15日上午10:15觸發 
	//	"0 15 10 L * ?" 每月最後一日的上午10:15觸發 
	//	"0 15 10 ? * 6L" 每月的最後一個星期五上午10:15觸發 
	//	"0 15 10 ? * 6L 2002-2005" 2002年至2005年的每月的最後一個星期五上午10:15觸發 
	//	"0 15 10 ? * 6#3" 每月的第三個星期五上午10:15觸發 
	//	 每隔5秒執行一次:*/5 * * * * ?
	//	   每隔1分鐘執行一次:0 */1 * * * ?
	//	 每天23點執行一次:0 0 23 * * ?
	//	   每天凌晨1點執行一次:0 0 1 * * ?
	//	   每月1號凌晨1點執行一次:0 0 1 1 * ?
	//	   每月最後一天23點執行一次:0 0 23 L * ?
	//	   每週星期天凌晨1點實行一次:0 0 1 ? * L

	@Scheduled(cron="0 0 1 * * ?")   //每天凌晨1點執行一次  
	public void writAllDataExcel() {
        //在這裡面就可以常見自己的定時程式碼
       }
 }     

注:

   1,  Scheduled 是一步起執行緒來處理自己的業務邏輯的,所以在定時器方法中,不可以使用HttpServletRequest request和HttpServletResponse response,並且在引數中都不可以

        使用

    2, 在webxml中必須新增定時器空配置,否則會導致兩次進入定時方法(在引入spring配置檔案時,不要使用spring-*.xml的方式,這樣會吧spring-mvc.xml重複引入,這是造成兩次進 

        入定時任務的原因)