Miscellaneous DelegatingFilterProxy and FilterToBeanProxy

Can someone clearly explain to me the differences between these two classes defined in web.xml?

+1


a source to share


1 answer


FilterToBeanProxy (F2BP) was Acegi's security class that was similarly used as Springs DelegatingFilterProxy (DFP). As far as I can tell, there is no need to use F2BP anymore, now that Acegi Security is part of Spring you can use Spring DFP with the same effect.



See javadocs for confirmation: FilterToBeanProxy Javadoc

+3


a source







All Articles