我正在使用 struts2 并进行了配置,因此 url 看起来像 www.myweb.com/index 而不是 www.myweb.com/index.action
但是现在我面临的问题是我应该如何在 struts.xml 文件中映射并获取请求参数,就像在 struts1 中一样,我可以通过 mapping.getParameters() 接收它,但是 struts2 中有什么可用的呢?
<action path="/profile/*"
type="net.viralpatel.struts.cleanurl.ProfileAction"
parameter="{1}">
<forward name="success" path="/profile.jsp" />
<forward name="fail" path="/profile.jsp" />
</action>
字符串参数 = mapping.getParameter();
所以在 struts2 中,如果我点击 www.myweb.com/index/p=2 www.myweb.com/index/biz/name /这里 biz & name 是 2 个参数/ www.myweb.com/index/biz/name/23 /这里 biz & name & 23 是参数/
谢谢