<!--StartFragment -->
警告: Internal Error: File /WEB-INF/web.xml not found
严重: Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: The absolute uri: http://struts.apache.org/tags-bean cannot be resolved in either web.xml or the jar files deployed with this application
at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51)
上面是报的错,
严重: Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: The absolute uri: http://struts.apache.org/tags-bean cannot be resolved in either web.xml or the jar files deployed with this application
at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51)
上面是报的错,
这个错误纠结我三天,百度了也没有人知道怎么解决。
首先在tomcat里的lib里面加上两个包,一个是jstl.jar,一个是standard.jar的包。
如果只报警告: Internal Error: File /WEB-INF/web.xml not found的话,
然后再去tomcat下的cof下的server.xml里面配置路劲,
在host里面的appBase配相对路径,
<Host name="localhost" appBase="webapps/education" unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
而docbase配绝对路径。
<Context path="" docBase="D:/wwwroot/education/wwwroot/education" reloadable="true" />
<Context path="" docBase="D:/wwwroot/education/wwwroot/education" reloadable="true" />
遇到这个问题主要是在本地后台可以进去,而上传到服务器上的时候就不能登录了。登录点不动,没反应,弄三天终于是弄好了。嘿嘿。