Struts 2 操作:参数访问

发布于 2024-09-12 05:58:31 字数 281 浏览 3 评论 0原文

我定义了这样的操作:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

另类 2024-09-19 05:58:31

您需要实现 静态参数拦截器 我的好man:

<action name="login" class="tognetti.site.actions.AuthenticationAction">
   <interceptor-ref name="defaultStack"/>
   <interceptor-ref name="staticParams">
      <param name="defaultURI">/secure/listaAnnunci.action</param>
   </interceptor-ref>
   <result>/login.jsp</result>
</action>

然后让你的 Action 实现可参数化,你的参数将被添加到请求参数映射中。

You need to implement the Static Parameters interceptor my good man:

<action name="login" class="tognetti.site.actions.AuthenticationAction">
   <interceptor-ref name="defaultStack"/>
   <interceptor-ref name="staticParams">
      <param name="defaultURI">/secure/listaAnnunci.action</param>
   </interceptor-ref>
   <result>/login.jsp</result>
</action>

Then have your Action implement Parameterizable and your param's will be added to the request params map.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文