我在 Eclipse 中创建了一个动态 Web 项目,并且我有一个需要读取配置文件的以下 Java 语句:
Document doc= new SAXReader().read(new File(ConstantsUtil.realPath+"appContext.xml"));
基本上,ConstantsUtil.realPath 将返回一个空字符串。
我尝试将“appContext.xml”放在“src”文件夹和“WEB-INF”文件夹下。但是,我总是会收到以下错误:
org.dom4j.DocumentException: appContext.xml (The system cannot find the file specified)
我真的很困惑:在 Eclipse 中,放置我的配置 xml 文件的正确位置在哪里?
提前致谢。