How to learn Spring Framework fast? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:30:35Z http://stackoverflow.com/feeds/question/278553 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast 12 How to learn Spring Framework fast? xelurg 2008-11-10T17:25:09Z 2009-10-07T22:39:49Z <p>Please recommend some good resources(especially must have books) about spring framework?</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/278565#278565 21 Answer by danimajo for How to learn Spring Framework fast? danimajo 2008-11-10T17:28:18Z 2008-11-10T17:28:18Z <p>Take a look at <a href="http://manning.com/walls2/" rel="nofollow">Spring in Action</a></p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/278569#278569 1 Answer by Simon for How to learn Spring Framework fast? Simon 2008-11-10T17:29:05Z 2008-11-10T17:29:05Z <p><a href="http://rads.stackoverflow.com/amzn/click/1590594614" rel="nofollow">Pro Spring</a> is a great book. I think the best way to learn is to try some of the sample apps out.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/278577#278577 14 Answer by Don for How to learn Spring Framework fast? Don 2008-11-10T17:31:01Z 2008-11-10T17:31:01Z <p>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.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/278583#278583 3 Answer by Mat Nadrofsky for How to learn Spring Framework fast? Mat Nadrofsky 2008-11-10T17:33:29Z 2008-11-10T17:33:29Z <p>Use this <a href="http://maestric.com/en/doc/java/spring" rel="nofollow">tutorial</a>. That's what I've been using.</p> <p>Then refer to <a href="http://rads.stackoverflow.com/amzn/click/1590594614" rel="nofollow">Pro Spring</a>.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/279256#279256 5 Answer by Alex Miller for How to learn Spring Framework fast? Alex Miller 2008-11-10T21:34:43Z 2008-11-10T21:34:43Z <p>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.</p> <p><a href="http://reference.terracotta.org" rel="nofollow">Examinator</a></p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/279688#279688 7 Answer by nasalter for How to learn Spring Framework fast? nasalter 2008-11-11T00:39:10Z 2008-11-11T00:39:10Z <p>To get going quickly I would start with the <a href="http://static.springframework.org/docs/Spring-MVC-step-by-step/" rel="nofollow">Spring MVC Tutorial</a>. It doesn't cost anything, doesn't take long to run through and gets the main points across.</p> <p>As far as books are concerned I pesonally have the following...</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0764574833" rel="nofollow">Professional Java Development with the Spring Framework</a> - not bad, but leaves the reader with the impression that it's been put together quickly</li> <li><a href="http://rads.stackoverflow.com/amzn/click/1590594614" rel="nofollow">Pro Spring</a> is pretty good.</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0764558315" rel="nofollow">J2EE Development Without EJB</a> is a little older now, but explains a lot of the rationale behind Spring.</li> </ul> <p>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.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/280613#280613 4 Answer by Willi aus Rohr for How to learn Spring Framework fast? Willi aus Rohr 2008-11-11T11:03:42Z 2008-11-11T11:03:42Z <p>I can recommend <a href="http://rads.stackoverflow.com/amzn/click/1590599799" rel="nofollow">Spring Recipes</a> and <a href="http://rads.stackoverflow.com/amzn/click/1590599217" rel="nofollow">Pro Spring 2.5</a>. The first helps to get some results quickly, the second is a solid reference book with advanced topics.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/385760#385760 0 Answer by Fortyrunner for How to learn Spring Framework fast? Fortyrunner 2008-12-22T08:02:55Z 2008-12-22T08:02:55Z <p>Spring Recipes is great.</p> <p>If all you need to do is to wire beans together: this is very easy using Spring and the official docs are very good. </p> <p>I would recommend that you write lots and lots of test code and then throw it away and do it again properly.</p> <p>Take a look at constructor injection, setter injection etc and try different ones out.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/1001534#1001534 0 Answer by Mohsin Hijazee for How to learn Spring Framework fast? Mohsin Hijazee 2009-06-16T13:38:11Z 2009-06-16T13:38:11Z <p>I've found following to be very usefull:</p> <ul> <li>Spring in Action</li> <li>Building Spring Enterprise Applications: From Novice to Professional</li> </ul> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/1233021#1233021 2 Answer by steve for How to learn Spring Framework fast? steve 2009-08-05T12:43:36Z 2009-08-05T12:43:36Z <p><a href="http://learnspringframework.org/default.aspx" rel="nofollow">http://learnspringframework.org/default.aspx</a></p> <p>is a good beginner's site</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/1233039#1233039 1 Answer by Don Branson for How to learn Spring Framework fast? Don Branson 2009-08-05T12:49:36Z 2009-08-05T12:49:36Z <p>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.</p> <p>Also, I did <a href="http://static.springsource.org/docs/Spring-MVC-step-by-step/index.html" rel="nofollow">this tutorial</a>. 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.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/1392778#1392778 0 Answer by gjhghgyh for How to learn Spring Framework fast? gjhghgyh 2009-09-08T08:48:25Z 2009-09-08T08:48:25Z <p>lovda book .This belong to USA.</p> http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fast/1534605#1534605 0 Answer by Donal Boyle for How to learn Spring Framework fast? Donal Boyle 2009-10-07T22:34:52Z 2009-10-07T22:34:52Z <p>To quickly see a project and some code in action you should check out the <a href="http://www.springsource.com/products/eclipse-downloads" rel="nofollow">SpringSource Tools Suite</a> (It's based on eclipse). I find the quickest way to learn something is to start playing around with examples.</p> <p>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.</p>