up vote 2 down vote favorite
1
share [g+] share [fb]

What are the minimum dependencies required to just use Spring's dependency injection (core framework only)? I'm using Spring for a standalone application, and I'd like to minimize the number of dependencies that I have to ship with the application.

I suppose I could systematically remove a Jar and see if the application breaks, but it would be much better if someone had a definitive answer.

Oh, and I'm using Spring 2.5.

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Check out the readme.txt that comes with the download of Spring 2.5.

Assuming you don't have AOP, JDBC, Transactions, or ORM, then your best bet is probably:

  • spring-core
  • spring-beans
  • spring-context
link|improve this answer
Thanks. The readme.txt clearly lists the dependencies for the spring jars. Looks like I can get away with just the three jars you mentioned, plus Commons Logging. – Jim Hurne May 22 '09 at 14:53
@toolkit, what if i want to use beside the DI, the messagesSource,PropertyPlaceHolder and Hibernate/JDBC support. – fresh_dev Dec 24 '11 at 21:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.