JPM
JPM

Reputation: 9306

Springsource Tool Suite and creating an Application from scratch

I have looked around for a beginners tutorial to start creating a Spring app using the STS IDE. There seems to be nothing around, its either hand build it or the tutorial doesn't work and is many versions off the current IDE. I am very new to Spring and need to get going on this. Any links you can throw my way I would appreciate it.

Upvotes: 12

Views: 14293

Answers (3)

HtonS
HtonS

Reputation: 301

I may be late, but I think this tutorial might be helpful (for those who are looking for sts tutorial like me): http://www.giantflyingsaucer.com/blog/?p=2373

UPD: and this one is good: http://viralpatel.net/blogs/tutorial-spring-3-mvc-introduction-spring-mvc-framework/

Upvotes: 3

Florian Fankhauser
Florian Fankhauser

Reputation: 3675

STS provides Template Projects. Open File -> New -> Spring Template Project. Now you can choose the type of application you want to create. If you want to create a web application choose Spring MVC Project. This will create a complete project with a controller, a view, maven integration and everything else you need. You can immediately run this application in tc Server.

Upvotes: 7

I think the green beans series from springsource is a good start: http://blog.springsource.com/2010/11/09/green-beans-putting-the-spring-in-your-step-and-application/

Integrated in the IDE is also a task focused tutorial to learn basic steps inside the ide ( help->task focused tutorials...

Upvotes: 6

Related Questions