Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Minor wordsmithing

...

Getting started with Tapestry is easy, and you have lots of ways to begin your adventure: watch a video, browse the source code of a working demo app, create a skeleton app using Maven, or step through the tutorial.

...

Tapestry page templates have the .tml extension and are found in src/main/resources/com/example/newapp/pages

Footnote

That is, in the com.example.newapp.pages package.

. Templates are essentially HTML with some special markup to link the template to the reference properties in the corresponding Java class and to reference ready-made components you can use to speed up your developmentor custom components.

Java Tapestry page classes are found in src/main/java/com/example/newapp/pages and their name matches their template name (Index.tml -> Index.java).

...

To deepen your understanding, step through the Tapestry Tutorial, which goes into much more detail about setting up your project , as well as loading it into Eclipse... then continues on to teach you more about Tapestry.

...

Tapestry has an active user mailing list on which you can find a lot of valuable support, commonly within just a few minutes. You can subscribe by sending e-mail to users-subscribe@tapestry.apache.org or look for an answer in the archives. More Options...

...