摘要: web.xml文件配置 点击查看代码 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSch 阅读全文
posted @ 2023-04-19 15:40 liangkuan 阅读(25) 评论(0) 推荐(0)
摘要: 点击查看代码 public class TestQuery { public static void main(String[] args) { // 1.找驱动 try { Class.forName("com.mysql.cj.jdbc.Driver"); } catch (ClassNotFo 阅读全文
posted @ 2023-04-19 15:26 liangkuan 阅读(29) 评论(0) 推荐(0)
摘要: 一、创建properties.properties文件连接好数据库 点击查看代码 driver=com.mysql.cj.jdbc.Driver url=jdbc:mysql://localhost:3306/demo01 username=root password=root zero=0 二、创 阅读全文
posted @ 2023-04-19 15:22 liangkuan 阅读(34) 评论(0) 推荐(0)