上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页
摘要: 1.首先声明一个连接池对象 private static DruidDateSource druidDateSource; 2.在获得字节流之后,在获取连接池的值 通过DruidDateSourceFactory.createDateSource方法获得 此方法接收的为一个properties集合, 阅读全文
posted @ 2021-11-10 09:26 软工小蜗牛 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.首先先写配置文件 配置文件包括 driver 驱动 url user password 四部分 2.在工具类中首先声明一个静态常量 private static final Properties properties = new Properties();//存储配置文件的map集合; 3.获得 阅读全文
posted @ 2021-11-10 08:38 软工小蜗牛 阅读(112) 评论(0) 推荐(0) 编辑
摘要: doget 获得页面传递的数据 代码如下 以此代码为例 我们需要向person实体类里面传入数据 name = req.getParameter("name"); age = req.getParameter("age"); school = req.getParameter("school"); 阅读全文
posted @ 2021-11-05 12:17 软工小蜗牛 阅读(76) 评论(0) 推荐(0) 编辑
摘要: private QueryRunner queryRunner= new QueryRunner(DButil.getDruidDataSource()) ; public boolean insert(person person) { Object[] parms = {person.getNam 阅读全文
posted @ 2021-11-05 08:51 软工小蜗牛 阅读(77) 评论(0) 推荐(0) 编辑
摘要: private static DruidDataSource druidDataSource; static { Properties properties = new Properties(); InputStream inputStream = DButil.class.getResourceA 阅读全文
posted @ 2021-11-04 23:26 软工小蜗牛 阅读(66) 评论(0) 推荐(0) 编辑
摘要: driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/shujuku?&useUnicode=true&serverTimezone=UTC username=root password=123456 #初始化连接数 initial 阅读全文
posted @ 2021-11-04 22:30 软工小蜗牛 阅读(69) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.druid.pool.DruidDataSource; import com.alibaba.druid.pool.DruidDataSourceFactory; import java.io.IOException; import java.io.InputS 阅读全文
posted @ 2021-11-04 22:29 软工小蜗牛 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 在servlet层时设置 @WebServlet("/getServlet1")此时为servlet的注释 在html中配置form 的 action属性时 要将你的本地服务端地址一并输入例如 <form action="/MySQL_war_exploded/getServlet1" method 阅读全文
posted @ 2021-11-04 15:28 软工小蜗牛 阅读(161) 评论(0) 推荐(0) 编辑
摘要: div标签 span标签 p标签 阅读全文
posted @ 2021-11-03 17:00 软工小蜗牛 阅读(58) 评论(0) 推荐(0) 编辑
摘要: input tpye = file //文件上传 input tpye = hidden //隐藏域 form标签是表单标签 action属性设置提交服务器的地址 method属性设置提交的方式 提交表单失败通常有三个原因 1.表单项没有name属性 2.单选、复选(下拉列表中的option属性)要 阅读全文
posted @ 2021-11-03 16:57 软工小蜗牛 阅读(170) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页