Reputation: 49
I have previously posted a question based on spring. It had to do with what IDE to use. I have since downloaded STS.
I have been trying to learn spring from using this IDE and have tried to use books and tutorials I found online.
So far the book I am reading is SPRING ROO COOKBOOK. But it is not showing me how to start developing in Spring.
I am looking for something to try show from the VERY first step, as in from when I install STS, then start up a spring project and make my first web application which will run successfully.
I am sorry if what I am saying is vague and not clear but I am very very confused and just need a clear tutorial which can show me how to start a spring project in STS and take me step by step until it is successfully deployed.
If anyone can send me a direct link to something like this I would really appreciate it.
Again my apologies if it appears vague what I am asking.
Upvotes: 4
Views: 314
Reputation: 120761
First of all I have to say, I love STS (I must write it because of the other answers :-) )
I know two good sources of Spring Understanding next to the Reference:
Dashbord/Tutorials/
(@everybody else that never have seen this: feature, have a look at it, it is a great way to use Mylyn for tutorials!)But believe me learning Spring in all details takes several years. So the important thing is to understand the base concepts, and learn to read the spring source code.
Upvotes: 0
Reputation: 38290
I'm a fan of Eclipse not the full STS because Eclipse does not hold your hand (and I already know eclipse without the STS extensions).
Give this a try:
Upvotes: 2
Reputation: 120168
STS is one specific tool; you don't need it to work with Spring. While it can be helpful, you should understand what is going on without it.
All the documentation you need is on the Spring website. In addition, I found a sample application in those pages found here.
It's not very difficult to get up an running. You need to download the jar(s), put them on your classpath, create your configurations, which reference the code you write (your components/beans), and do some general config, and you are set. Look over the link I posted, it walks you thru the basic configurations and code.
If you run into any trouble, post a specific question on your issue.
Upvotes: 0