Struts 正在调用什么方法?
如何从拦截器中获取将在操作中调用的方法的名称?
How can I get the name of the method that will be called in the action from within an interceptor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,感谢 struts 源码我找到了答案。
其中,调用是传递给拦截器的
ActionInvocation
。Ok, thanks to the struts source I found the answer.
Where invocation is the
ActionInvocation
passed to your interceptor.