Struts2:全局结果配置错误

发布于 2024-09-24 03:55:18 字数 352 浏览 3 评论 0原文

我想使用全局结果“登录”。但它仅在配置中没有全局结果的情况下才有效。这是我的配置的相关部分:

类别列表.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

べ繥欢鉨o。 2024-10-01 03:55:18

知道了!顺序很重要。

struts.xml 中的顺序很重要:

  1. 结果类型?
  2. 拦截器?
  3. 默认拦截器引用?
  4. 默认操作-参考?
  5. 默认类参考?
  6. 全球结果?
  7. 全局异常映射?
  8. 行动*

Got it! The order matters.

Order in struts.xml matters:

  1. result-types?
  2. interceptors?
  3. default-interceptor-ref?
  4. default-action- ref?
  5. default-class-ref?
  6. global-results?
  7. global-exception-mappings?
  8. action*
薄荷梦 2024-10-01 03:55:18

是的,标签必须按顺序排列:结果类型 ->拦截器 ->默认拦截器引用 ->默认操作参考 ->默认类引用 ->全局结果 ->全局异常映射 ->行动*

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*

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文