Meher
Meher

Reputation: 2585

Eclipse indigo Struts 2 installation

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

Answers (1)

Dave Newton
Dave Newton

Reputation: 160311

You don't "install Struts 2 in Eclipse", you have a project that uses Struts 2 in Eclipse.

You either:

  1. Get all the dependencies yourself and add them to your project, or
  2. Use Maven and let the computer do what computers are good at.

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

Related Questions