gpt4 book ai didi

java - 获取错误消息 ServletActionRedirectResult 与 ServletDispatcherResult 不兼容

转载 作者:太空宇宙 更新时间:2023-11-04 07:16:43 25 4
gpt4 key购买 nike

我已将 Struts 2.0 应用程序升级到 Struts 2.3.15.2。该应用程序运行良好。但我在系统输出日志中看到很少的消息。

com.opensymphony.xwork2.util.logging.commons.CommonsLogger error Exception occurred 
during processing request: org.apache.struts2.dispatcher.ServletActionRedirectResult
incompatible with org.apache.struts2.dispatcher.ServletDispatcherResult

什么原因导致此错误?

最佳答案

在配置中,您没有使用默认结果类型dispatcherServletActionRedirectResult 的实例是从操作调用中返回的。如果您想获得结果的类型,您可以检查该实例

Result result = invocation.getResult();
if (result instanceof ServletDispatcherResult){
ServletDispatcherResult dispatcherResult = (ServletDispatcherResult )result;
...
}

关于java - 获取错误消息 ServletActionRedirectResult 与 ServletDispatcherResult 不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19861141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com