使用配置文件找不到文件异常

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用配置文件找不到文件异常相关的知识,希望对你有一定的参考价值。

我正在创建需要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;
}

谁能告诉我该怎么办?

答案

我建议使用由运行Web应用程序的容器处理的连接池。您不必关心连接,容器会为您执行此操作。如果您只需要配置参数,则可以预见web.xml将它们带到Web应用程序中并使其可用。

作为Tomcat和mysql的一个例子。我的数据源名称是jdbc / mydb

1)编辑目录META-INF中的文件content.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的连接)非常重要。实际上,连接管理器并没有真正关闭连接。并且能够将已经打开的连接提供给下一个消费者。

希望这可以帮助

以上是关于使用配置文件找不到文件异常的主要内容,如果未能解决你的问题,请参考以下文章

SSH问题:系统启动时,spring配置文件解析失败,报”cvc-elt.1: 找不到元素 'beans' 的声明“异常

Struts2文件下载找不到输入流异常

文件找不到异常(FileNotFoundException)

java 代码里用了File类,打包后不能运行,报找不到文件的异常,该怎么解决?

Eclipse 中的通用代码片段或模板

ASP.net HTTP 404 - 找不到文件而不是 MaxRequestLength 异常