commit | 49f9fdc5f5e9ba820d86f92d32e2a45221753ebd | [log] [tgz] |
---|---|---|
author | zenios <dimitris.zenios@gmail.com> | Tue Aug 23 15:08:34 2022 +0300 |
committer | GitHub <noreply@github.com> | Tue Aug 23 09:08:34 2022 -0300 |
tree | 29a9096e7986f2724fb2e7404d47be20d2cf98ea | |
parent | 31f5dffb5e97ab07dfc857afa4524d0bcdd53c2c [diff] |
When a non proxied object is beeing eager loaded registry has to instantiate all its constructor parameters. (#35) If one of these parameters is an eager loaded services (Not yet loaded) registry will create a proxy for it. Because the proxy is created, that eager load service will not be eager loaded since its already registered as a realized service. These issue is related with the following 1. https://dev.tapestry.apache.narkive.com/m806StSk/strange-behavour-of-eagerload 2. https://issues.apache.org/jira/browse/TAPESTRY-226.
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.)
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.
See https://tapestry.apache.org/documentation.html for the details on every Tapestry topic.