[问题解决] File "/struts-tags" not found

错误:
org.apache.jasper.JasperException: File "/struts-tags" not found

发生场景:
tomcat服务器

解决方案:
将tomcat中的server.xml文件配置:

<Host name="localhost" appBase="webapps" .....></Host>

改成

<Host name="localhost" appBase="webapps" .....>
<Context path="/" docBase="项目名称(即webapps目录的文件名)" reloadable="true" caseSensitive="false" debug="0"></Context>
</Host>

 

posted @ 2013-07-26 10:48  Panda.ZY  阅读(2222)  评论(0编辑  收藏  举报