jdbc获取连接
获取连接(final版):将数据库连接需要的4个基本信息声明在配置文件中,通过读取配置文件的方式
@Test public void getConnection5() throws Exception{
//1.读取配置文件中的4个基本信息
// InputStream is = ConnectionTest.class.getClassLoader().getResourceAsStream("jdbc.properties");
//获取系统的类加载器的另一种方式
InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("jdbc.properties");
Properties pros = new Properties();
pros.load(is);
String user = pros.getProperty("user");
String password = pros.getProperty("password");
String url = pros.getProperty("url");
String driverClass = pros.getProperty("driverClass");
//2.加载驱动
Class.forName(driverClass);
//3.获取连接
Connection conn = DriverManager.getConnection(url, user, password);
System.out.println(conn);
}
jdbc.properties
user=rootpassword=123456
url=jdbc:mysql://192.168.220.11:3306/test?rewriteBatchedStatements=true
driverClass=com.mysql.cj.jdbc.Driver
以上是 jdbc获取连接 的全部内容, 来源链接: utcz.com/z/511448.html