jsp未跳转直接使用struts2标签

前篇想通过index.jsp的jsp:forward向action走请求,想通过s:action标签实现,出现如下错误:

 

2013-4-12 21:52:12 org.apache.catalina.core.StandardWrapperValve invoke
严重: Servlet.service() for servlet jsp threw exception
The Struts dispatcher cannot be found.  This is usually caused by using Struts tags without the associated filter. Struts tags are only usable when the request has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag. - [unknown location]
	at org.apache.struts2.views.jsp.TagUtils.getStack(TagUtils.java:60)
	at org.apache.struts2.views.jsp.StrutsBodyTagSupport.getStack(StrutsBodyTagSupport.java:44)

 

 

原因:如果想要在jsp文件中,采用 struts的tag,那么jsp必须是通过action跳转得到,也就是必须通过web.xml所配置的过滤器访问文件,否则会有异常。
解决办法:
配置通用操作:
<action name="*">
     <result>/{1}.jsp</result>
  </action>
以前访问jsp的操作换成action的操作:eg: 原来 test.jsp 先在test.do

 

参考资料:

http://www.blogjava.net/freeman1984/archive/2010/06/01/322478.html

 

建议采用其他方式提交,这种方式也不可取。。

你可能感兴趣的:(struts2标签)