Struts 2 操作:参数访问
我定义了这样的操作:
<action name="login" class="tognetti.site.actions.AuthenticationAction">
<param name="defaultURI">/secure/listaAnnunci.action</param>
<result>/login.jsp</result>
</action>
我可以从操作内部访问参数吗?谢谢
I defined an action like this:
<action name="login" class="tognetti.site.actions.AuthenticationAction">
<param name="defaultURI">/secure/listaAnnunci.action</param>
<result>/login.jsp</result>
</action>
I can I access the param from inside the action? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实现 静态参数拦截器 我的好man:
然后让你的 Action 实现
可参数化
,你的参数将被添加到请求参数映射中。You need to implement the Static Parameters interceptor my good man:
Then have your Action implement
Parameterizable
and your param's will be added to the request params map.