com.billy.servlet.TestServlet.javapackagecom.billy.servlet;importjava.io.IOException;im" />

欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

java定時器

系統 2167 0

以前項目中寫過類似的定時器,今天復習1下,自己建了個工程.

實現原理:創建servlet,應用服務器自動加載此servlet,在web.xml設置定時器的各個參數

開發工具:myeclipse6.0

應用服務器:tomcat6.0

1、創建web工程TestTimer

2、創建servlet=>com.billy.servlet.TestServlet.java

?

package com.billy.servlet;
import java.io.IOException;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.billy.Task;


public class TestServlet extends HttpServlet {
?
?private Timer timer1 = null;
?private Task task1;
?/**
? * Constructor of the object.
? */
?public TestServlet() {
??super();
?}

?/**
? * Destruction of the servlet. <br>
? */
?public void destroy() {
??super.destroy(); // Just puts "destroy" string in log
??// Put your code here
??????? if(timer1!=null){???
??????????? timer1.cancel();???
??????? }??
?}

?/**
? * The doGet method of the servlet. <br>
? *
? * This method is called when a form has its tag value method equals to get.
? *
? * @param request the request send by the client to the server
? * @param response the response send by the server to the client
? * @throws ServletException if an error occurred
? * @throws IOException if an error occurred
? */
?public void doGet(HttpServletRequest request, HttpServletResponse response)
???throws ServletException, IOException {
??System.out.println("doGet");
?}

?/**
? * The doPost method of the servlet. <br>
? *
? * This method is called when a form has its tag value method equals to post.
? *
? * @param request the request send by the client to the server
? * @param response the response send by the server to the client
? * @throws ServletException if an error occurred
? * @throws IOException if an error occurred
? */
?public void doPost(HttpServletRequest request, HttpServletResponse response)
???throws ServletException, IOException {
??System.out.println("doPost");
?}

?/**
? * Initialization of the servlet. <br>
? *
? * @throws ServletException if an error occurs
? */
?public void init() throws ServletException {
??// Put your code here
??System.out.println("init");
??ServletContext context = getServletContext();
???????
??????? // 定時器開關
??????? String startTask = getInitParameter("startTask");
??????? System.out.println(startTask);
???????
??????? // 開始運行時間
??????? Calendar calendar = Calendar.getInstance();
??????? calendar.set(Calendar.HOUR_OF_DAY,Integer.parseInt(getInitParameter("startTime")));
??????? Date time = calendar.getTime();

??????? // 緩沖時間(分鐘)
??????? Long intervalTime = Long.parseLong(getInitParameter("intervalTime"));
??????? System.out.println(intervalTime);
???????
???????
??????? // 啟動定時器
??????? if(startTask.equals("true")){
??????????? timer1 = new Timer(true);
??????????? task1 = new Task(context);
??????????? timer1.schedule(task1, time, intervalTime * 1000 * 60);???
??????? }
?}

}

?

//Task為任務類

package com.billy;

import java.util.TimerTask;

import javax.servlet.ServletContext;

public class Task extends TimerTask{
?
?private ServletContext context;???
??? static int i = 1;
?
??? private static boolean isRunning = true;???
???????
??? public Task(ServletContext context){???
??????? this.context = context;
??? }???
???????
???????????
??? @Override??
??? public void run() {???
??????? if(isRunning){???

???????????? //此處寫自己需要循環的業務邏輯
????????????? System.out.println("上傳文件" + i);
????????????? i++;
??????? }???
??? }???

}

?

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
?xmlns=" http://java.sun.com/xml/ns/j2ee "
?xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "
?xsi:schemaLocation=" http://java.sun.com/xml/ns/j2ee
? http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd ">
? <servlet>
??? <servlet-name>TestServlet</servlet-name>
??? <servlet-class>com.billy.servlet.TestServlet</servlet-class>
??? <init-param>
??? <!-- // 定時器開關? -->
???? <param-name>startTask</param-name>
???? <param-value>true</param-value>
??? </init-param>
??? <init-param>
??? <!-- // 開始運行時間? HH-->
???? <param-name>startTime</param-name>
???? <param-value>12</param-value>
??? </init-param>
??? <init-param>
??? <!-- // 緩沖時間? MM-->
???? <param-name>intervalTime</param-name>
???? <param-value>1</param-value>
??? </init-param>
??? <load-on-startup>300</load-on-startup>
? </servlet>

? <servlet-mapping>
??? <servlet-name>TestServlet</servlet-name>
??? <url-pattern>/wangweiTest</url-pattern>
? </servlet-mapping>
? <welcome-file-list>
??? <welcome-file>index.jsp</welcome-file>
? </welcome-file-list>
</web-app>

目錄結構:


java定時器
?

java定時器


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 亚洲综合激情另类小说区 | 欧美卡一卡二卡新区网站 | 人人看人人干 | 日韩在线视频导航 | 在线国产一区 | 666sao| 色综合天天射 | 国产精品不卡一区 | 欧美资源在线观看 | 亚洲精品欧美一区二区三区 | 波多野结衣 久久 | 中文字幕在线第一页 | 看了让人下面流水的视频 | 欧美综合社区 | 91看片免费在线观看 | 三级理论中文字幕在线播放 | 国产精品久久久久久久久久红粉 | 国产欧美日韩综合精品一区二区 | jizz18毛片 | 国产熟妇久久777777 | 看一天影院宅急看在线观看 | 国产精品天天天天影视 | 国产精品高清在线观看 | 免费中文字幕 | 日韩精品真人荷官无码 | 亚洲成人黄色在线 | 成人亚洲一区 | 一级观看免费完整版视频 | 欧美日韩亚洲一区二区三区在线观看 | 一区二区三区四区国产 | 成人午夜视频在线观看 | 99一区二区三区 | 日韩电影一区二区三区 | 亚洲激情成人 | 欧美性高清bbbbbbxxxxx | 亚洲国产免费 | 欧美精品免费在线 | 欧美高清不卡午夜精品免费视频 | 一区二区三区四区在线 | 国产日韩精品入口 | av在线大全 |