摘要: DBUtil.java package util; import java.sql.*; public class DBUtil { private static final String URL = "jdbc:mysql://localhost:3306/imooc"; private stat 阅读全文
posted @ 2019-12-08 17:09 请叫我小老弟 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 经常在代码中看到依赖的作用域为<scope>test</scope>,它的作用是,只能在test目录(通过右键->Make Directory as->Test Sources Root来标记)下的类中导入(即import xxx)依赖中的内容;否则在main->java目录(Sources Roo 阅读全文
posted @ 2019-12-08 16:12 请叫我小老弟 阅读(10477) 评论(0) 推荐(1) 编辑
摘要: 1、代码 import java.sql.*; public class DBUtil { public static void main(String[] args) throws ClassNotFoundException, SQLException { Class.forName("com. 阅读全文
posted @ 2019-12-08 14:30 请叫我小老弟 阅读(139) 评论(0) 推荐(0) 编辑