标签:不同 deb sed basedir resource 关键字 base debug color
项目中,使用嵌入式tomcat启动web工程(具体使用请度娘,关键字: tomcat embeded)
启动时,设置tomcat path的代码如下:
Embedded tomcat = new Embedded(); String baseDir = new File(".").getAbsolutePath(); tomcat.setCatalinaHome(baseDir + "/src/test/resources/tomcat-home");
在eclipse中运行正常,但是在idea中异常;
debug后发现,getAbsolutePath()方法获取的值不同,idea中获取的不是module的路径,而是项目根路径;
设置idea中该方法的工作目录:
重新设置为module目录即可
idea和eclipse中getAbsolutePath()方法获取值不同
标签:不同 deb sed basedir resource 关键字 base debug color
原文地址:http://www.cnblogs.com/huahua035/p/6944409.html