httpServlet,java web后台服务
生活随笔
收集整理的這篇文章主要介紹了
httpServlet,java web后台服务
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1,定時(shí)執(zhí)行的類(lèi)
package com.utils;import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date;public class MyTimer extends Thread {// 間隔時(shí)間:小時(shí)private int intervalHours;// 誤差(操作所需時(shí)間可能導(dǎo)致誤差):分鐘private int deviationMinute;// 執(zhí)行時(shí)間private String runTime;public MyTimer(){// 參數(shù)取得intervalHours = 24;deviationMinute = 5;runTime= "19:30";}public void run() {while (!this.isInterrupted()) {// 線程未中斷執(zhí)行循環(huán)// 獲取當(dāng)前時(shí)間:HH:mmDate now = new Date(); SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm");String hours = dateFormat.format(now); // 時(shí)間到達(dá)if(hours.equals(runTime)){doRun();try {// 長(zhǎng)時(shí)間休眠:間隔時(shí)間-誤差Thread.sleep(intervalHours * 3600 * 1000 - deviationMinute * 60 * 1000);} catch (InterruptedException e) {e.printStackTrace();}}else{try {// 等待間隔:30sThread.sleep(30000);System.out.println(hours);} catch (InterruptedException e) {e.printStackTrace();}}}}/*** 處理*/private void doRun() {} }
?
2,servlet
package com.utils;import javax.servlet.http.HttpServlet;public class MyServlet extends HttpServlet{/*** */private static final long serialVersionUID = 1L;private MyTimer myTimer; public MyServlet(){ } public void init(){ String str = null; if (str == null && myTimer== null) { myTimer= new MyTimer();myTimer.start(); }super.init(); } public void destory(){ if (myTimer!= null && myTimer.isInterrupted()) { myTimer.interrupt(); }
super.destroy(); } }
3,web.xml
</servlet>
?
轉(zhuǎn)載于:https://www.cnblogs.com/lckblog/p/4125678.html
總結(jié)
以上是生活随笔為你收集整理的httpServlet,java web后台服务的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 关于解决Permission is on
- 下一篇: if ($this-getRequest