Struts2准备方法

发布于 2024-11-08 16:34:33 字数 82 浏览 0 评论 0原文

我有一个操作类,其中为 struts.xml 中的每个操作映射了不同的方法。 我希望在 struts.xml 中映射的其他方法之前调用不同的准备方法。

I have one action class with different methods mapped for each action in my struts.xml.
And I want different prepare methods invoked before my other methods mapped in the struts.xml.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南城追梦 2024-11-15 16:34:33

只需创建一个

void prepareMethodName(){}

其中 MethodName 是每个方法的 Preparable 方法的名称。调用此方法后,默认情况下,prepare() 方法仍然会运行。

请参阅:http://struts.apache.org/2.0.14/文档/prepare-interceptor.html

Simply create a

void prepareMethodName(){}

Where MethodName is the name of your per-method Preparable method. The prepare() method by default will still run after this method is called.

Please see: http://struts.apache.org/2.0.14/docs/prepare-interceptor.html

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