尝试从webapps
文件夹中读取Xml文件。我使用eclipse作为IDE.Code是def dir = new File("webapps/WEB-INF/file.txt)
如果我从main()
测试此类,但是当我在Tomcat服务器上运行它时,它会抛出FileNotFoundException
,因为它正在尝试在Eclipse Installation Directory/webapps/WEB-INF/file.txt
中找到该文件
应用程序将部署在Tomcat安装目录中。
更新代码
def dir = this.class.getResource("webapps/WEB-INF/appEntryXslt/appEntryToSEGRequest")
dir.eachFileRecurse(FileType.FILES) { file ->
//do something with the file
}
但这也行不通。我想从目录中读取所有文件。