strutrs2 中 如何在JSP页面中的form表格里面写的action名字与struts.xml中的action对应
我如果在web.xml中配的是<filter-mapping><filter-name>struts2</filter-name><url-pattern...
我如果在web.xml中配的是<filter-mapping> <filter-name>struts2</filter-name> <url-pattern
展开
2个回答
展开全部
比如:JSP:<form action="../showknow/info.action" name="from1" method="post">
其中showknow为namespace="/showknow" info为
<action name="info"
class="xxx.xxx" method="info">中的name属性的值
对应的struts.xml:<package name="showknow" extends="default" namespace="/showknow">
<action name="info" class="xxx.xxx" method="info">
<result name="success">
xxx.jsp
</result>
</action>
如果你要在web.xml里配置<url-pattern>的话,那就<url-pattern>*.action</url-pattern>与info.action对应的,用*作通配符,也可以改为*.do,不过就相应改为info.do了
不知我这样回答你能看懂不
其中showknow为namespace="/showknow" info为
<action name="info"
class="xxx.xxx" method="info">中的name属性的值
对应的struts.xml:<package name="showknow" extends="default" namespace="/showknow">
<action name="info" class="xxx.xxx" method="info">
<result name="success">
xxx.jsp
</result>
</action>
如果你要在web.xml里配置<url-pattern>的话,那就<url-pattern>*.action</url-pattern>与info.action对应的,用*作通配符,也可以改为*.do,不过就相应改为info.do了
不知我这样回答你能看懂不
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询