DButils分析

时间:2022-09-27 20:33:23
package com.ldf.utils;

import java.sql.Connection;

public class DBUtils {
private static String driverClass;
private static String url;
private static String username;
private static String password; static{
//此对象是用于加载properties文件数据的
ResourceBundle rb = ResourceBundle.getBundle("conf");
driverClass = rb.getString("driverClass");
url = rb.getString("url");
username = rb.getString("username");
password = rb.getString("password");
try {
Class.forName(driverClass);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
} //得到连接的方法
public static Connection getConnection() throws Exception{
return DriverManager.getConnection(url, username, password);
} //关闭资源的方法
public static void closeAll(ResultSet rs,Statement stmt,Connection conn){
//关闭资源
if(rs!=null){
try {
rs.close();
} catch (Exception e) {
e.printStackTrace();
}
rs = null;
}
if(stmt!=null){
try {
stmt.close();
} catch (Exception e) {
e.printStackTrace();
}
stmt = null;
}
if(conn!=null){
try {
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
conn = null;
}
}
}

  1.使用ResourceBoundle类加载properties文件是一种很方便的方式,但是有几个注意点是必须要注意的,

 (1)使用ResourceBoundle加载properties文件,不要写后缀,不然会报错,只写properties的文件名即可.

 (2)properties文件应该放在src文件夹下,也就是服务器的classpath目录下,至于如何加载自己想要的位置中的properties,楼主也在探讨,有懂的朋友,请留言,多谢指教.

 (3)properties文件中的等号左右两边不用加单引号或者双引号,系统自动认为是字符串类型.

 (4)更新中.......

//此对象是用于加载properties文件数据的
ResourceBundle rb = ResourceBundle.getBundle("conf");
driverClass = rb.getString("driverClass");
url = rb.getString("url");
username = rb.getString("username");
password = rb.getString("password");

  2.Connection当作为父级引用时,为了更好的维护代码,建议使用接口.Connection接口是java.sql.Connection;包括PreparedStatement,ResultSet当作父级引用时,建议都为接口类型.都是在java.sql包下的.

public static Connection getConnection() throws Exception{
return DriverManager.getConnection(url, username, password);
}

  3.更新中......