tags:

views:

58

answers:

3

I have to start up a project on Warranty Forecasting. My teacher has asked me to learn struts for the same as it will be a full fledged java EE thing. Please suggest me a place where i can learn struts.

+4  A: 

The official guide is a good place to start.

Samuel_xL
+2  A: 

I would suggest to go for Struts 2 in Action.

Ankit
Isn't Struts in Action based on Struts 1?
Don Roby
Thanks for reminding donroby... I have corrected it to Struts 2 in Action...
Ankit
Fantastic book. I totally agree.
Shawn D.
+1 Good book. much better than the official guide or the online tutorial or docs.
leonbloy
+2  A: 

There are two versions of Struts that are quite different. Struts 1 was the original and became the de facto standard for web frameworks. It is still used a lot today.
There were some shortcomings with Struts 1 and therefore another Framework called WebWorks was merged with Struts and became Struts 2. You will need to ask which one you will need to learn. They are both MVC, but as I said earlier they are very different.

For version 1.x
http://courses.coreservlets.com/Course-Materials/struts.html
For a list of resources look here: http://struts.apache.org/1.1/resources/tutorials.html

For version 2.x
http://www.vaannila.com/struts-2/struts-2-tutorial/struts-2-tutorial.html

Romain Hippeau