up vote 39 down vote favorite
36
share [g+] share [fb]

Possible Duplicate:
What are the best books for Spring and Spring MVC?

Please recommend some good resources(especially must have books) about spring framework?

link|improve this question

11  
How to learn it fast? I find that unreasonable deadlines are very helpful in that regard. ;) – izb Sep 8 '09 at 8:57
Hehe :) That helps to learn the essentails perhaps... not to attain deep understanding of it however... – xelurg Sep 10 '09 at 4:32
Great question and even better answers. – zeroDivisible Nov 24 '09 at 12:44
feedback

closed as exact duplicate by Bill the Lizard Jul 22 '11 at 17:22

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

15 Answers

up vote 39 down vote accepted

Take a look at Spring in Action

link|improve this answer
1  
it's clearly written, which is unusual for a tech book. – Alan Nov 10 '08 at 17:32
3  
I personally prefer the Pro Spring books, but that's a personal thing. – skaffman Jun 16 '09 at 13:40
I've used this book and it really is great. – danivovich Aug 5 '09 at 12:46
+1, that book is brilliant! saved my skin many times. – Michael Wiles Aug 5 '09 at 12:54
Very good book. You can start with the basics (dependency injection) and then more advanced features like AOP. A reference – ruffp Feb 24 '11 at 11:12
show 1 more comment
feedback

The official reference documentation is of an unusually high quality for an open-source project and has one considerable advantage over books: it's guaranteed to be up-to-date.

link|improve this answer
1  
feedback

[LATER EDIT] The highest-voted answer to this question "Spring in Action" is a good one. It's an excellent, comprehensive book. It might not get you there quickly, there's a lot to read, but it's very good.

The rest of this answer is now a little out of date but I'll leave it here for interest's sake, and the Spring MVC Tutorial is still a very good, and quick way to get going.


To get going quickly I would start with the Spring MVC Tutorial. It doesn't cost anything, doesn't take long to run through and gets the main points across.

As far as books are concerned I pesonally have the following...

There may be newer books now covering Spring 2 in more detail. I would recommend having more than one book handy, as they cover different areas at different levels of detail.

Hope this helps.

link|improve this answer
feedback

If you're interested, we've developed a reference web application called the Examinator that is based on a Spring stack and demonstrates Spring, Spring MVC, Spring data access with JPA, Spring Security, Spring transactions, Spring Web Flow all wrapped up in a Maven project executable with Jetty or Tomcat. It uses Terracotta to make it scalable and has been tested up to 20k users on a 16 node cluster. It's open source so you can look through how we did all sorts of stuff.

The link to this has gone missing in the latest doc organization but you can find some info here:

link|improve this answer
very nice, thanks! – mrblah Jan 11 '10 at 19:48
That link is broken – Don Jan 18 '10 at 15:42
Looks like things have been re-organized enough that those links are broken. They're working on rewriting parts of it for the latest platform so I suspect it will re-emerge in the future. You can find some stuff here: - terracotta.org/examinator/quick-start - svn.terracotta.org/svn/forge/projects/exam – Alex Miller Jan 18 '10 at 21:18
I'm reading spring in action and was looking for a managable open source project which I can delve in to see how everything is used in the real world. I'm so glad I found this post of yours. I'll reference this post to a question I asked on programmer exchange. programmers.stackexchange.com/questions/90760/… – Omnipresent Jul 12 '11 at 14:10
feedback

Use this tutorial. That's what I've been using.

Then refer to Pro Spring.

link|improve this answer
feedback

I can recommend Spring Recipes and Pro Spring 2.5. The first helps to get some results quickly, the second is a solid reference book with advanced topics.

link|improve this answer
feedback

I needed to do this for a job a while back. I used Spring in Action, as suggested elsewhere, just reading the core section and the sections on jdbcTemplate and Hibernate integration, since I knew I'd need those. So, figure out what you need, and study the right sections, not the whole book, if possible.

Also, I did this tutorial. I picked this one to suit me, but there are many tutorials out there. I worked through the whole thing, got to run it and watch the gears turn, which is a key part of understanding how the thing works.

link|improve this answer
feedback

Pro Spring is a great book. I think the best way to learn is to try some of the sample apps out.

link|improve this answer
feedback

Spring Recipes is great.

If all you need to do is to wire beans together: this is very easy using Spring and the official docs are very good.

I would recommend that you write lots and lots of test code and then throw it away and do it again properly.

Take a look at constructor injection, setter injection etc and try different ones out.

link|improve this answer
feedback

To quickly see a project and some code in action you should check out the SpringSource Tools Suite (It's based on eclipse). I find the quickest way to learn something is to start playing around with examples.

The "STS Dashboard" contains tutorials for a bunch of Spring topics and the nice thing is they setup an actual project and walk you through the code. For web based applications it will even deploy to tomcat so you can see it working. At the end, you have a working project to play around with! Once you have that you can try out everything from all the great documentation sources referenced in the other answers.

link|improve this answer
feedback

Have you ever thought of taking a SpringSource class? You can learn Spring in a 4 day class that's hands-on. You can find Core Spring classes in your area.

link|improve this answer
feedback

I've found following to be very usefull:

  • Spring in Action
  • Building Spring Enterprise Applications: From Novice to Professional
link|improve this answer
feedback

http://learnspringframework.org/default.aspx

is a good beginner's site

link|improve this answer
feedback

http://www.springbyexample.com

link|improve this answer
feedback

I recommend you http://www.roseindia.net/spring/index.shtml site, it has great tutorial about spring and other framework. Looking more search more in google. Google having great way to find your solution easily.

link|improve this answer
feedback

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