Servlet过滤器有2个条目,一个在web.xml中,另一个在Spring applicationContext.xml中
我将过滤器添加到applicationContext.xml中,因为我想将creditProcessor bean注入其中.
唯一的问题是web.xml中的条目被JBoss拾取然后使用,因此creditProcessor为null.
我是否必须使用Spring的delegingFilterProxy或类似的东西,以便我可以将东西注入bean中,或者我可以调整web.xml吗?
web.xml中:
Spring的applicationContext.xml中:
最佳答案
你不能像这样管理过滤弹簧.使用您的设置,它将由spring实例化一次,并由servlet容器实例化一次.相反,使用
原文链接:https://www.f2er.com/spring/432648.htmlDelegatingFilterProxy
:
>将过滤器代理声明为< filter>在web.xml中
>设置过滤器定义的targetBeanName init-param以指定应该实际处理过滤的bean: