TAP5-2560: adding unit test.
1 file changed
tree: 1a0de758aebc456c44004b054b6b7d8dcb71b5f4
  1. beanmodel/
  2. buildSrc/
  3. commons/
  4. gradle/
  5. plastic/
  6. quickstart/
  7. src/
  8. support/
  9. tapestry-beanvalidator/
  10. tapestry-cdi/
  11. tapestry-clojure/
  12. tapestry-core/
  13. tapestry-func/
  14. tapestry-hibernate/
  15. tapestry-hibernate-core/
  16. tapestry-internal-test/
  17. tapestry-ioc/
  18. tapestry-ioc-jcache/
  19. tapestry-ioc-junit/
  20. tapestry-javadoc/
  21. tapestry-jmx/
  22. tapestry-jpa/
  23. tapestry-json/
  24. tapestry-kaptcha/
  25. tapestry-mongodb/
  26. tapestry-runner/
  27. tapestry-spring/
  28. tapestry-test/
  29. tapestry-test-constants/
  30. tapestry-test-data/
  31. tapestry-upload/
  32. tapestry-webresources/
  33. tapestry5-annotations/
  34. .gitignore
  35. .travis.yml
  36. 54_RELEASE_NOTES.md
  37. 55_RELEASE_NOTES.md
  38. build.gradle
  39. gradlew
  40. gradlew.bat
  41. LICENSE.txt
  42. md5.gradle
  43. NOTICE.txt
  44. README.md
  45. settings.gradle
  46. sha256.gradle
  47. ssh.gradle
README.md

Tapestry is a component-oriented Java web app framework focusing on performance and developer productivity.

A component is just a reusable part of a page. It's trivially easy to create your own components, and Tapestry comes with a large number of components you can use (Form, Loop, Select, Checkbox, Grid, BeanEditor, etc.).

In Tapestry, each page and component is a simple Java POJO with a corresponding HTML template. The HTML template and corresponding Java class have the same name (e.g. “Breadcrumbs.html” and “Breadcrumbs.java”), so you don‘t have to tell Tapestry which template uses which Java class. It’s automatic.

Tapestry features live class reloading: change your Java code, refresh the browser and see the changes instantly.

AJAX support allows you to create responsive web interfaces while writing little to no JavaScript. (But if you like writing JavaScript, great, no problem, Tapestry gets out of your way.)

Quick Start

Main article: Getting Started

You can let Apache Maven create your initial project for you:

mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org

Maven will prompt you for the archetype to create (“Tapestry 5 Quickstart Project”) and the exact version number (e.g., “5.4.3”). It also asks you for a group id, an artifact id, and a version number. Once Maven dowloads everything, then you can start the app:

$ cd newapp
$ mvn jetty:run

Then just send your browser to http://localhost:8080/newapp

See the Getting Started introduction as well as the Tapestry Tutorial for a deeper dive.

Main Docs

See https://tapestry.apache.org/documentation.html for the details on every Tapestry topic.