我正在创建需要Jdbc连接的Web应用程序。我想从当前工作目录中的配置文件中提供db详细信息。为此,我创建了一个ReadConfigFile类。当我单独运行此类时,它将为我提供正确的当前工作目录。但是,当我从服务器运行Web应用程序时,它向我显示了不正确的当前工作目录并引发FileNotFound Exception。这是我的代码:
private static final String pwd=System.getProperty("user.dir");
private static final File configFile=new File(pwd+File.separator+"configFile.txt");
private static BufferedReader br;
public static String getDBHost() {
String dbHost=null;
try {
br=new BufferedReader(new FileReader(configFile));
String st;
while((st=br.readLine())!=null) {
if(st.trim().startsWith("DB Host: ")) {
dbHost=st.trim().substring(9, st.trim().length());
}
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
System.out.println(e);
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println(e);
} finally {
try {
if(br!=null) {
br.close();
}
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println(e);
}
}
return dbHost;
}
谁能告诉我该怎么做?
答案 0 :(得分:0)
我建议使用由运行Web应用程序的容器处理的连接池。您不必关心连接,容器会为您完成连接。 如果仅需要配置参数,则可以预料到web.xml可以使用它们并使它们在您的web应用程序中可用。
以Tomcat和MySQL为例。 我的数据源的名称为jdbc / mydb
1)编辑META-INF目录中的文件contect.xml并添加
<Resource auth="Container"
name="jdbc/mydb"
type="javax.sql.DataSource"
username="username" password="aC00l6a55w0rd"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/DBNAME"/>
2)在WEB-INF目录中编辑web.xml并添加
<resource-ref>
<description>application Database</description>
<res-ref-name>jdbc/mydb</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
3)现在,您可以在Java代码中从容器连接池获取连接。在此示例中,我使用的是JSF和托管bean:
Connection con = null;
try {
Context ctx = new InitialContext();
//FacesContext fctx = FacesContext.getCurrentInstance();
DataSource ds = (DataSource) ctx.lookup("java:/comp/env/jdbc/mydb");
con = ds.getConnection();
// do some database things, like read-write-update or whatever
} catch ( SQLException sqlex ) {
System.out.println(getClass().getName() + " SQL Exception: " + sqlex.getMessage();
} catch (NamingException nmex) {
System.out.println(getClass().getName() + " Nameing Exception: " + nmex.getMessage();
} finally (
try {
if ( con != null ) {
con.close();
}
catch ( SQLException e) {
System.out.println(getClass().getName() + " closing Exception: " + e.getMessage();
}
}
关闭所有DB对象(如ResultSet,PreparedStatement以及与免费DB-Ressources的连接)非常重要。实际上,连接管理器并没有真正关闭连接。并且可以将已经打开的连接与下一个使用者建立连接。
希望这会有所帮助