views:

503

answers:

1

can anyone clearly explain on the different on this two class defined in web.xml?

A: 

The FilterToBeanProxy (F2BP) was an Acegi Security class tht had a similar use as Springs DelegatingFilterProxy (DFP). As far as I can tell there is no need to ever use F2BP anymore, now that Acegi Security is part of Spring you can use Spring's DFP to the same effect.

See the javadocs for confirmation : FilterToBeanProxy Javadoc

Gandalf