在哪里可以找到defaultStackHibernate拦截器堆栈的内容?
我正在使用 struts 2 和 full-hibernate-plugin-for-struts2。我想设置 fileUpload 拦截器
image/png,image/gif,image/jpeg
我在哪里可以找到 defaultStackHibernate 的内容,这样我就可以这样做吗?
I am using struts 2 and full-hibernate-plugin-for-struts2. I would like to set fileUpload interceptor
<param name="allowedTypes">image/png,image/gif,image/jpeg</param>
Where can i find the content of defaultStackHibernate so I can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自文件
struts-plugin.xml
。应该在插件jar包的根目录下。编辑:当然,您不需要修改
struts-plugin.xml
本身。您可以像这样覆盖struts.xml
中的拦截器定义:请参阅 http://struts.apache.org/2.x/docs/interceptors.html 获取更多建议。
From the file
struts-plugin.xml
. It should be in the root directory of the jar package of the plugin.EDIT: Of course, you don't need to modify
struts-plugin.xml
itself. You can override interceptor definitions in yourstruts.xml
like this:See http://struts.apache.org/2.x/docs/interceptors.html for more advice.