struts2找不到对应action错误的解决

错误如下:

There is no Action mapped for namespace [/users] and action name [User_login] associated with context path [/Struts2AndHibernate].


对应解决方法:

1、struts2版本问题

一开始使用的是2.5版本,所以web.xml 配置如下:

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



后来改成2.3.4,问题辫解决了,同时web.xml需修改成如下:

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

你可能感兴趣的:(struts2)