03 2021 档案

QuartzQuartz定时任务
摘要:待补充 http://www.html580.com/tool/quartz/index.html 阅读全文

posted @ 2021-03-12 10:49 刀锋93 阅读(65) 评论(0) 推荐(0)

jdbc模糊查询、分页查询、联合查询
摘要:模糊查询 正常的jdbc查询的sql语句,类似这样, "select * from balance where username = ?"pstat.setString(1,username)//通过这个方法告诉数据库,类型(如果是字符串就'') 和 值 底层帮我们拼接成 select * from 阅读全文

posted @ 2021-03-11 16:08 刀锋93 阅读(263) 评论(0) 推荐(0)

PreparedStatement
摘要:jdbc六部曲:1.导包 2.加载驱动 3.创建连接 4.创建状态参数 5.执行sql 6.关闭 String className="com.mysql.jdbc.Driver"; String url="jdbc:mysql://localhost:3306/atm?useSSL=false"; 阅读全文

posted @ 2021-03-11 10:51 刀锋93 阅读(217) 评论(0) 推荐(0)

web服务器简述
摘要:1.Apache Apache也被叫做httpd服务器,是目前使用最广泛的web服务器,它被应用于各种平台之中。Apache刚开始被推出的时候有很多的缺陷,如今已经被修复的越来越完善,如果你是web服务器的钻研者,小编建议你一定要学习一下Apache的使用。 2.Nginx Nginx是Linux平 阅读全文

posted @ 2021-03-08 10:14 刀锋93 阅读(606) 评论(0) 推荐(0)

JDBC基本操作
摘要:准备工作,下载驱动包,https://dev.mysql.com/downloads/connector/j/ 发现没有windows的,可以选择倒数第二个,Platform Independent独立平台 数据库跟驱动包版本最好一致 jdbc六部曲: 1.导包(IDEA开发工具-File-Proj 阅读全文

posted @ 2021-03-03 00:42 刀锋93 阅读(86) 评论(0) 推荐(0)

导航