java – Spring Framework过滤器,bean没有注入

前端之家收集整理的这篇文章主要介绍了java – Spring Framework过滤器,bean没有注入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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容器实例化一次.相反,使用DelegatingFilterProxy

>将过滤器代理声明为< filter>在web.xml中
>设置过滤器定义的targetBeanName init-param以指定应该实际处理过滤的bean:

原文链接:https://www.f2er.com/spring/432648.html

猜你在找的Spring相关文章