Reputation: 2585
I'm new to J2EE, can anyone tell me how to install Struts 2 in Eclipse Indigo? I have tried many URLs, none of them were working. Could anyone, please, give me a valid URL?
Upvotes: 1
Views: 5488
Reputation: 160311
You don't "install Struts 2 in Eclipse", you have a project that uses Struts 2 in Eclipse.
You either:
For option 1, I'd recommended using the struts-blank application that ships with the distro. Optionally, you could read some of the creating a Struts 2 application manually, often useful for getting started.
For option 2, you could try using one of the Maven plugins for Eclipse (e.g., m2eclipse), and possibly following the creating a Struts 2 project using Maven docs.
Upvotes: 4