Minimizing SpringLdap dependencies.

Posted by mP on Stack Overflow See other posts from Stack Overflow or by mP
Published on 2010-04-29T05:29:51Z Indexed on 2010/04/29 5:37 UTC
Read the original article Hit count: 389

Filed under:
|
|

I would like to use SpringLDAP to do some simple username/password verification for authentication purposes. WHile the actual jar file is quite small (less than 1 meg) it seems to have a lot of dependencies as listed by link text.

By alot i mean it seems to suck in over 50 things many which dont seem right such as spring-jdbc as I dont want any jdbc and only the ldap template class and its bare dependencies. Without wasting too much time is it possible to the spring-ldap with only a bare minimum number of dependencies which amount to something like:

  • spring core
  • spring ldap
  • whatever logging deps they require.
  • spring tx

I dont see or appreciate why the rest of thes tuff is reuqired and was wondering can anyone verify they arent really needed in the end if one sticks to the basics. The other stuff i am referring too include:

  • spring-orm // no jdbc
  • beans // i dont want ioc.
  • spring-aop // no need for aop.

I intend to wire up the beans i will be using manually. I dont want more crap in there for what ammounts to setting a few properties, and want confirmation that I dont need what is probably there just to do the ioc stuff when all i want is the ldap stuff.

© Stack Overflow or respective owner

Related posts about spring

Related posts about ldap