摘要: //时间格式化工具类public class DateUtils { static SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //日期转字符串 public static String dateToS 阅读全文
posted @ 2020-09-25 19:54 master_hxh 阅读(154) 评论(0) 推荐(0) 编辑
摘要: public class C3P0Utils { //创建c3p0连接池 private static DataSource dataSource = new ComboPooledDataSource(); //创建连接池 public static DataSource getDataSourc 阅读全文
posted @ 2020-09-25 19:53 master_hxh 阅读(166) 评论(0) 推荐(0) 编辑
摘要: public class PageTool { private int currentPage;//当前页码 private int pageSize;//每页显示的条数 private int totalCount;//总记录数(查询数据库) private int totalPages;//总页 阅读全文
posted @ 2020-09-25 19:52 master_hxh 阅读(962) 评论(0) 推荐(0) 编辑
摘要: Ajax 一、Ajax 基础 (一)Ajax简介 Ajax的应用场景: 现在最火的快手和抖音, 点赞或者实时评论 百度搜索框的自动补全功能 用户信息的校验(是否唯一或者是否可用) 什么是ajax? Ajax 可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。 阅读全文
posted @ 2020-09-25 11:37 master_hxh 阅读(179) 评论(0) 推荐(0) 编辑