Questions tagged [tapestry]

Apache Tapestry is a Java web application framework that is organized around building pages from reusable components. Tapestry is a component-based framework, attempting to structure web applications into small, manageable and re-useable parts. Components consist of a component class file and often a component template file; also, components can have their own JavaScript and CSS. Tapestry template files are XHTML files, so they can be edited in

Apache Tapestry is a Java web application framework that is organized around building pages from reusable components. It has some similarities to Apache Wicket (which it predates), but embraces a meta-programming approach to make end-user code as simple and concise as possible.

Tapestry is a component-based framework, attempting to structure web applications into small, manageable and re-useable parts. Components consist of a component class file and often a component template file; also, components can have their own JavaScript and CSS. Tapestry template files are XHTML files, so they can be edited in any XML editor and require no special IDE plugins.

Tapestry supports live reloading of components during development, so the need to restart the application server arises only seldomly.

Tapestry integrates rather nicely with Hibernate (through Tapestry-Hibernate) and Spring (via Tapestry-Spring).

Tapestry favors convention over configuration, so there are no XML files to maintain, but this unfortunately means that there are a quite a few non-obvious concepts a developer must understand to really be effective.

The getting started page on the Tapestry website is a good place to get started.

References:

978 questions
-2
votes
1 answer

Tapestry sample exception

I download a sample of tapestry and run it on the tomcat server,though it is very simple,the following exception occurs: HTTP Status 500 - Exception constructing service 'PagePool': Error invoking service builder method…
Bin.W
  • 11
  • 1
-2
votes
1 answer

How to change a particular value when I select a date?

The requirement is I have two date fields: One is effective date and date of birth. When I select the effective date on the page. The age field should do the following calculation. That is age would be Effective date - date of birth. the result…
-3
votes
1 answer

How to pass Textfields values from form to .java class in Tapestry?

As I am new to Tapestry I dont have much knowledge aboutr it.I have a login.tml file in which i have two textfields userName and password.I need to pass values of textfields to login.java class when user clicks on submit or actionlink.Please give me…
1 2 3
65
66