Struts2准备方法
我有一个操作类,其中为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需创建一个
其中 MethodName 是每个方法的 Preparable 方法的名称。调用此方法后,默认情况下,prepare() 方法仍然会运行。
请参阅:http://struts.apache.org/2.0.14/文档/prepare-interceptor.html
Simply create a
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