The requested resource is not available
运行tomcat 提示如下错误: The requested resource () is not available的解决方案
有的人说:只需要修改Tomcat服务器中web.xml
<init-param>
<param-name>listings</param-name>
<param-value>false(将其该为true)</param-value>
</init-param>
但我改为true之后,还是出现同样的错误,所以,接着寻找答案,后来发现:有一个jar的文件没有导入到项目中
因此,必须将Struts 2的jar包复制到项目的WEB-INF/lib目录下,开发Struts 2框架至少需要的jar文件如下:
commons-fileupload-1.2.1.jar
commons-io-1.3.2.jar
commons-logging-1.0.4.jar
freemarker-2.3.13.jar
ognl-2.6.11.jar
struts2-core-2.1.6.jar
xwork-2.2.1.jar
当然,如果开发不同的项目需要的jar文件是不同的!
转自 http://blog.sina.com.cn/s/blog_5c5bc9070100zkj3.html
posted on 2013-03-20 01:25 Osiris4Net 阅读(275) 评论(0) 编辑 收藏 举报