I am trying to do an ldap lookup in a servlet filter. I use DelegatingFilterProxy in web.xml to forward to my filter bean and execute the doFilter method. This all seems ok but I am a bit worried about using LdapTemplate in this filter bean. I plan to inject it so it will be an instance variable, am I likely to encounter any multi-threading issues, is there anything I should watch out for ?
Apologies if this is a bit of a naive question.
Thanks for any help.


Reply With Quote