There is no Action mapped for namespace [/] and action name [user_registPage] associated with context path [/shop].
最近做的一个spring整合Struts框架的项目,产生了一个报错,从报错描述上来看应该就是Action路径的原因,因此做个总结。
(1)Struts配置的Action路径要与jsp跳转的路径一致。
可以看到Action配置的name为user1_registPage,而jsp中配置的路径为user_registPage,因此把user1_registPage改成user_registpage即可!
(2)编写的Action类中调用的方法要与配置中method{1}方法名称一样,此处的Action配置采用的是通配符的方式,编写的Action类中的方法为registPage.如图所示:
以上两个条件满足,这样jsp跳转的路径就和Action配置的路径一致,访问成功!