Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to improve my knowledge of Spring 3.1 ( especially Spring MVC ). Schedules, locations and pricing of corporate classes have not worked for my company. I've found the books for Spring 3.* to be incomplete or not optimally helpful in many ways.

Could anyone recommend a video course, online training course or CBT course that is up to date ( at least Spring 3.0 ) and provides a means of asking questions/getting help?

I know about the videos from VirtualPairProgrammers

I've also pieced together a lot from internet tutorials, pieced things together mediocre books ( the rule for Spring 3.* ) and partially rebuilt a Servlet webapp in Spring MVC. So something that goes a little deeper than "Hello World Level" would be useful.

Thanks in advance for any information

Steve

share|improve this question
3  
try and build an app, download the sample apps, and ask questions on here – NimChimpsky Nov 7 '12 at 19:53
1  
I've already done some significant work in converting a Servlet web app to use Spring-MVC 3.1, but I feel like I only have a superficial knowledge of Spring. I have found the docs cryptic and the books incomplete/poorly written. I was hoping for some kind of class. Thanks. – Steve Nov 7 '12 at 20:00
okay. Hi. If you are okay with Indian Accent, then I can recommend this guys tutorial. youtube.com/user/koushks/videos?flow=grid&view=1 you can start here. – Dhruvenkumar Shah Nov 7 '12 at 22:56

2 Answers

I'd suggest download Springsource tools suite.

Then do 'build mvc project' from the project templates.

This will construct an example controller, jsp and minimal configuration and give you the fundementals in just 2 classes, a jsp and a configuration file.

That in conjunction with the videos on springsource's site (dependency injection first and there should be one for MVC) and you should be away. Downloading their 'simpleMVC' project from Github may be a good idea. In a nutshell:

@Controller
MyClass

@RequestMapping(value="/home")
public showHome() {
  ... do stuff 
  return "home"; 
}

finds home.jsp based view resolver. Just to right click -> run project on server to see it working.

Spend two weeks playing with it and you'll have it down. If your company is starting a green-field spring project and no-one has experience give the guys a month to build a play system and do tutorials or hire a contractor.

share|improve this answer
One further comment: run the tutorial for spring roo then examine some of the classes it users - this will show some nice and cutting edge use of spring technology. The remove the roo project nature (removes the aspectj stuff) and inspect. – Alex Nov 7 '12 at 22:38

You can check the Spring MVC show case project in github. https://github.com/SpringSource/spring-mvc-showcase

you can learn from it.
and for video tutorials check this link. Its one of the good tutorial that I have seen. http://www.youtube.com/user/koushks/videos?flow=grid&view=1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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