struts2标签报错的处理方法

按照网上的教程试验了一下,在index.jsp文件中使用struts2标签,总是报错:

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]  

 

web.xml如下:


   struts2
   
    org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
   

 
 

 
   struts2
   *.action
 

 

折腾了好久,原来是因为控制器只处理了。action的访问,需要把.jsp也交给控制器处理才能正确使用struts标签。解决方法就是在web.xml加入以下配置:

    
 struts2  
 *.jsp  
 

 

参考:http://blog.csdn.net/guoquanyou/article/details/6585847

 

你可能感兴趣的:(JAVA)