为了账号安全,请及时绑定邮箱和手机立即绑定

web每5秒向数据库中插入一条记录-学习笔记

标签:
JavaScript

SystemListener

import java.util.Timer;import java.util.TimerTask;import java.util.UUID;import javax.servlet.ServletContextEvent;import javax.servlet.ServletContextListener;import cn.itcast.web.dao.SystemDao;public class SystemListener implements ServletContextListener {    private Timer timer = new Timer();    public void contextInitialized(ServletContextEvent sce) {        try {            SystemDao systemDao = new SystemDao();            systemDao.createTable("systemInit");            timer.schedule(new SystemTask(),0,5*1000);        } catch (Exception e) {        }    }    public void contextDestroyed(ServletContextEvent sce) {        try {            SystemDao systemDao = new SystemDao();            systemDao.dropTable("systemInit");            //中止定时器            timer.cancel();        } catch (Exception e) {        }    }}//任务类class SystemTask extends TimerTask{    public void run() {        try {            SystemDao systemDao = new SystemDao();            systemDao.init("systemInit",UUID.randomUUID().toString());        } catch (Exception e) {        }    }}

*/import java.sql.SQLException;import org.apache.commons.dbutils.QueryRunner;import cn.itcast.web.util.JdbcUtil;public class SystemDao {    //删除表    public void dropTable(String tableName) throws SQLException{        QueryRunner runner = new QueryRunner(JdbcUtil.getDataSource());        String sql = "drop table if exists " + tableName;        runner.update(sql);    }    //创建表    public void createTable(String tableName) throws SQLException{        QueryRunner runner = new QueryRunner(JdbcUtil.getDataSource());        String sql = "create table if not exists "+tableName+"(id varchar(40) primary key,curr_time timestamp not null)";        runner.update(sql);    }    //初始化数据    public void init(String tableName,String id) throws SQLException{        QueryRunner runner = new QueryRunner(JdbcUtil.getDataSource());        String sql = "insert into "+tableName+"(id) values(?)";        runner.update(sql,id);    }}

web.xml配置

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消