⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 poolcleaner.java

📁 “JSP数据库项目案例导航”一书从第一章到第十一章各章实例的源程序文件以及数据库文件。 注意: 1. 本书中的案例提供的数据库环境不同
💻 JAVA
字号:
package oa.main;

import java.awt.event.*;

public class PoolCleaner
    extends Thread
    implements ActionListener 
{
	//设置定时器
	javax.swing.Timer timer = null ;
	DealString ds = new DealString();
	
	public PoolCleaner ( ) 
	{
		//分钟
		int interval = 30;
		try
		{
			interval = Integer.parseInt( Configuration.DB_SESSION ) ;
		}catch(Exception e){}

		//毫秒:1分钟=60秒*1000毫秒
		interval = interval * 60 * 1000 ;
		System.out.println("  (:-:)"+interval);
		timer = new javax.swing.Timer ( interval , this ) ;
		timer.start();
		deal();
	}
	
	//定时器事件
	public void actionPerformed ( ActionEvent e )
	{
		deal();
	}
	
	public synchronized void deal ( )
	{
		////////////////////////////////////////要修改

		System.out.println( ds.getDateTime ( ).substring ( 11 , 19 ) + "  (:-:)(:-:)(:-:)(:-:)(:-:)(:-:)清空连接池了!");
		Configuration.connMgr.cleanAllConn(Configuration.ConnectionPoolName);
		
		
		DataBase.showConnNUM();
		System.out.println("\r\n\r\n");
		

		////////////////////////////////////////
		
		timer.restart ( ) ;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -