如何拦截Struts 2 Actions之间的导航?
我正在使用 Struts 2。当用户导航执行另一个操作时是否可以识别并拦截?
我需要确定用户是否要执行与他当前正在执行的操作不同的操作。
I´m using Struts 2. Is it possible to identify and intercept when a user navigates do another Action?
I need to identify if the user is going to an Action different then the one he is currently on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很容易。只需使用 Struts 2 拦截器即可。
然后只需在 struts.xml 配置中添加上述拦截器即可。我想这就是你想要的,对吗?我总是使用这个拦截器。
请参阅http://struts.apache.org/2.x/docs/interceptors。 html 或 http://www.benmccann.com/blog/ struts-2-tutorial-interceptors/ 用于示例。
It's easy. Just use Struts 2 interceptor.
Then just add above interceptor in struts.xml configuration. I think this is what you want, right? I always use this interceptor.
See http://struts.apache.org/2.x/docs/interceptors.html or http://www.benmccann.com/blog/struts-2-tutorial-interceptors/ for the samples.