搜索

首页  >  问答  >  正文

java - Maven项目怎么读取resources配置文件?

项目目录结构:

代码:

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下了吗,为什么?该怎么改?

伊谢尔伦伊谢尔伦2842 天前946

全部回复(3)我来回复

  • PHP中文网

    PHP中文网2017-04-18 09:48:24

    雷雷

    回复
    0
  • 巴扎黑

    巴扎黑2017-04-18 09:48:24

    maven项目中resources目录下就是classpath下。

    回复
    0
  • 巴扎黑

    巴扎黑2017-04-18 09:48:24

    你是运行测试包下的testgenerator 所以抱filenotfound吗 如果是 请建立java/test/resources目录 你可以看看你的target目录下应该在运行测试程序时 配置文件没有生成到编译后的路径下 那就自然找不到配置文件

    回复
    0
  • 取消回复