由于采用了 Access 数据库,数据库文件的绝对路径是获取数据库连接时的关键参数,而本例中又同时采用了 JSF 框架,JSF 页面调用 JavaBean 中的方法时与普通 JSP 页面不同,要想将 request 对象直接传递到 JavaBean 的相关方法中来获取站点路径是比较麻烦的。前后思索想到一个笨方法,可以直接在获取连接的方法中获得路径,无需从 JSF 页面获取参数。代码如下:
public static Connection getConnection() {
// 获得当前 JSF 上下文环境
FacesContext context = FacesContext.getCurrentInstance();
// 获得 FacesContext 的 Application 对象
Application application = context.getApplication();
// 获得 classes 目录的绝对路径
URL classesUrl = application.getClass().getResource("/");
// 获得数据库文件的绝对路径
String dbpath = classesUrl.toString() + "../../data/blogData.mdb";
// 截去 URL 前端文件访问协议 file:// 字符串
dbpath = dbpath.substring(6);
String url = "jdbc:odbc:driver={Microsoft Access Driver (*.mdb)};DBQ="
+ dbpath;
Connection conn = null;
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
conn = DriverManager.getConnection(url, "", "");
}catch(Exception ex) {
ex.printStackTrace();
}
return conn;
}