如何避免以下错误?我正在Struts2上实现Spring-Security,该应用程序运行正常,但以下消息将显示在服务器日志上。

 WARNING!!!
 FilterDispatcher <<< is deprecated! Please use the new filters!
      This can be a source of unpredictable problems!
         Please refer to the docs for more details!
         http://struts.apache.org/2.x/docs/webxml.html

最佳答案

我建议您点击链接并按照提示进行操作:

<filter>
    <filter-name>struts2</filter-name>

    <filter-class>
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    </filter-class>
</filter>

关于struts2 - 不推荐使用FilterDispatcher! -FilterDispatcher的替代品是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16226542/

10-11 18:16