struts2拦截器
在我的 struts2 xml 文件中,我看到这个拦截器 def:
<interceptors>
<interceptor-stack name="dividendinterceptorstack">
<interceptor-ref name="servletConfig" />
<interceptor-ref name="modelDriven" />
</interceptor-stack>
但是为股息拦截器堆栈定义的实际类在哪里?它不在 xml 中。
In my struts2 xml file, I see this interceptor def:
<interceptors>
<interceptor-stack name="dividendinterceptorstack">
<interceptor-ref name="servletConfig" />
<interceptor-ref name="modelDriven" />
</interceptor-stack>
But where is the actual class defined for dividendinterceptorstack? it is not in the xml.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
拦截器堆栈不是类,它们是以特定顺序运行的拦截器的集合。
Interceptor stacks are not classes, they are collections of interceptors run in a specific order.
股息拦截器堆栈是拦截器的堆栈(集合)。
如果您找不到此堆栈定义 - 您包含上述代码片段的包是从什么扩展的?看看包装里的
等级制度。
dividendinterceptorstack is a stack (collection) of interceptors.
If you can't find this stack definition - What does your package enclosing the above snippet extend from? Look in the package's
hierarchy.
我刚刚从 struts core jar 中的 struts-dafault.xml 文件中选取了这个文件,这样你就可以看到拦截器引用名称已经被定义,所以我们只是在声明我们自己的堆栈时引用它们
i just picked this up from struts-dafault.xml file located in struts core jar so you can see interceptor ref name has already been defined so we are just refereeing them when we are declaring our own stack