Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Mentioned other servlet containers

Wiki Markup
{scrollbar}
As much as we would like to dive right into Tapestry right nowthe code, we must first talk about setting set up your development environment. The joy and the pain of Java development is the volume of choice available. There's just a bewildering number of JDKs, IDEs and other TLAs (Three Letter Acronyms) out there. Let's talk about a stack of tools, all open source and freely available, that you'll need to setup. Likely you have some of these, or some version of thesereasonable alternatives, already on your development machine.

...

Eclipse comes with a Maven plugin, M2Eclipse (also known as m2e) with an embedded version of Maven. We'll use that here for simplicity's sake. Alternatively, you could install Maven from http://maven.apache.org/download.html and use it from the command line ("mvn").

Jetty

Jetty is an For simplicity, this tutorial uses Jetty, a lightweight open source web server and servlet container available from the Eclipse Foundation. Of course, you could use pretty much any other Java servlet container (Tomcat, Glassfish, JBoss, etc), but the instructions that follow assume Jetty.

We will use Maven to download and run Jetty Jetty is designed for high performance and easy embedding in other software. Maven can download it for you and run it automatically, so you DO will NOT have to download it for this tutorial. (Alternatively, you could download and install the RunJettyRun Eclipse plugin from the Eclipse Marketplace.)

Tapestry

You should Tapestry is available as a set of JAR files, but you will not have to download this directly; as we'll seethem yourself. As with Jetty, Maven should will take care of downloading Tapestry , and its dependencies, as needed.

Next: Creating The Skeleton Application

...