TAP5-2672: Improve reporting for errors in JS modules
1 file changed
tree: 4723ccb06081dd5ba81e6bc62c36492b1c0c05cb
  1. beanmodel/
  2. buildSrc/
  3. commons/
  4. docs/
  5. genericsresolver-guava/
  6. gradle/
  7. plastic/
  8. quickstart/
  9. src/
  10. support/
  11. tapestry-beanvalidator/
  12. tapestry-cdi/
  13. tapestry-clojure/
  14. tapestry-core/
  15. tapestry-func/
  16. tapestry-hibernate/
  17. tapestry-hibernate-core/
  18. tapestry-http/
  19. tapestry-internal-test/
  20. tapestry-ioc/
  21. tapestry-ioc-jcache/
  22. tapestry-ioc-junit/
  23. tapestry-javadoc/
  24. tapestry-jmx/
  25. tapestry-jpa/
  26. tapestry-json/
  27. tapestry-kaptcha/
  28. tapestry-mongodb/
  29. tapestry-runner/
  30. tapestry-spring/
  31. tapestry-test/
  32. tapestry-test-constants/
  33. tapestry-test-data/
  34. tapestry-upload/
  35. tapestry-version-migrator/
  36. tapestry-webresources/
  37. tapestry5-annotations/
  38. .gitignore
  39. .travis.yml
  40. 5.7_RELEASE_NOTES.md
  41. 54_RELEASE_NOTES.md
  42. 55_RELEASE_NOTES.md
  43. build.gradle
  44. gradlew
  45. gradlew.bat
  46. LICENSE.txt
  47. md5.gradle
  48. NOTICE.txt
  49. README.md
  50. settings.gradle
  51. sha256.gradle
  52. 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.