java - Maven项目怎么读取resources配置文件?
伊谢尔伦
伊谢尔伦 2017-04-18 09:46:24
0
3
909

项目目录结构:

代码:

public class Generator {
    
    public void excute() {
        try {
            List<String> warnings = new ArrayList<String>();            
            ConfigurationParser cp = new ConfigurationParser(warnings);
            File  configFile = new File("." + File.separator + "generatorConfig.xml");
            Configuration config = cp.parseConfiguration(configFile);
            DefaultShellCallback callback = new DefaultShellCallback(true);
            MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
            System.out.println("开始生成文件...");
            myBatisGenerator.generate(null);
            System.out.println("生成文件完成.");
        } catch (Exception e) {
            e.printStackTrace();
        }      
    }
  

}

项目是用来生成mybatis相关文件的,但是一直报错:java.io.FileNotFoundException: generatorConfig.xml (系统找不到指定的文件。)

编译时,resources中的文件不是已经在classes下了吗,为什么?该怎么改?

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

全部回覆(3)
洪涛

雷雷

巴扎黑

maven專案中resources目录下就是classpath下。

巴扎黑

你是運行測試包下的testgenerator 所以抱filenotfound嗎如果是請建立java/test/resources目錄你可以看看你的target目錄下應該在運行測試程序時配置文件沒有生成到編譯後的路徑下那就自然找不到設定檔

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板