Struts2:全局结果配置错误
我想使用全局结果“登录”。但它仅在配置中没有全局结果的情况下才有效。这是我的配置的相关部分:
类别列表.jsp 类别详细信息.jsp /WEB-INF/login.jsp
当我启动我的应用程序时,它会抛出此异常:
org.xml.sax.SAXParseException:元素类型“package”的内容必须匹配“(结果类型?,拦截器?,默认拦截器引用?,默认操作引用?,默认类引用?,全局结果?,全局异常映射?,操作*)”。
怎么了?
I want to use a global result "login". But it ony works without global-results in the configuration. This is the relevant part of my configuration:
categoryList.jsp
categoryDetail.jsp
/WEB-INF/login.jsp
When I start my application it throws this Exception:
org.xml.sax.SAXParseException: The content of element type "package" must match "(result-types?,interceptors?,default-interceptor-ref?,default-action-ref?,default-class-ref?,global-results?,global-exception-mappings?,action*)".
What is wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
知道了!顺序很重要。
struts.xml 中的顺序很重要:
Got it! The order matters.
Order in struts.xml matters:
是的,标签必须按顺序排列:结果类型 ->拦截器 ->默认拦截器引用 ->默认操作参考 ->默认类引用 ->全局结果 ->全局异常映射 ->行动*
Yes, the tags must be in order : result-types -> interceptors -> default-interceptor-ref -> default-action-ref -> default-class-ref -> global-results -> global-exception-mappings -> action*