javase的写法:
properties.load(new FileInputStream("src\\druid.properties"));
报错:
FileNotFoundException: src\druid.properties
static { Properties properties = new Properties(); try { //properties.load(new FileInputStream("E:\\学习\\ij workspace\\javaweb\\ajax\\src\\druid.properties")); //javaweb的路径方式和javase不同,不能直接写相对路径(因为找的是out目录下的文件) //可以使用绝对路径或者类加载器的方式 properties.load(JDBCUtilsByDruid.class.getClassLoader().getResourceAsStream("druid.properties")); ds = DruidDataSourceFactory.createDataSource(properties); } catch (Exception e) { e.printStackTrace(); }
这里推荐使用类加载器的方式,因为打包发布之后无法再使用绝对路径
类加载器找到的是classes的目录