META-INF\services\java.sql.Driver
文本中的类名称去注册
文章插图
Class.forName("com.mysql.jdbc.Driver");
, 更加明确文章插图
文章插图
例子首先在src文件夹下面创建一个Properties文件
user=rootpassword=123456url=jdbc:mysql://localhost:3306/hsp_db02driver=com.mysql.jdbc.Driver
方式5:推荐使用//方式5 在方式4的基础上使用配置文件,连接数据库更加灵活@Testpublic void connect05() throws Exception {//通过Properties对象拿到配置文件的信息Properties properties = new Properties();properties.load(new FileInputStream("src\\mysql.properties"));//获取相关的值String user = properties.getProperty("user");String password = properties.getProperty("password");String url = properties.getProperty("url");String driver = properties.getProperty("driver");Class.forName(driver);//建议写上Connection connection = DriverManager.getConnection(url, user, password);System.out.println("方式5="+connection);}
推荐阅读
- 联发科天玑1000plus和骁龙855哪个玩游戏好
- 美的踢脚线取暖器hdy22th和hdy22L区别?哪个好?
- 栗棕色和咖啡色对比-染栗棕色,咖啡色还是其他色好?
- 一加9r和红米k40哪个好_手机参数配置对比
- 真我GT2和真我GT2Pro有什么区别-参数对比
- iPhone13Pro远峰蓝好看吗_iphone13pro远峰蓝色和石墨色对比
- 魅族18和18pro区别_魅族18和18pro参数配置
- 天玑800u和天玑820对比_天玑800u和天玑820哪个好
- 华硕灵耀Pro16和联想小新Pro16哪个好_怎么选择
- 华为P50Pro和iPhone12Promax拍照测试_拍照能力对比