问题描述
解决方案
已经调试出来了了 在struts 和 action 中输入需要注意大小写 还有单词的书写问题 空格问题 谢谢大家
解决方案二:
jdk1.8和以前版本有个致命的区别就是getResource获取路径,你注意点。
String WEBINFPath = this.getServletContext().getRealPath("WEB-INF");
if(WEBINFPath==null){
String temp = this.getServletContext().getResource("/").getPath(); //区分是否是1.8的jdk
WEBINFPath = temp + File.separator + "WEB-INF";
}
System.out.println(WEBINFPath);
File webInfFile = new File(WEBINFPath);
webRootPath = webInfFile.getParentFile().getAbsolutePath();
看看这样的代码能帮助你吗
解决方案三:
换个高版本的tomcat试试吧。
时间: 2025-01-21 13:11:25