Tapestry
Code less, deliver more. Rayland Jeans
Tapestry Code less, deliver more. Rayland Jeans What is Apache - - PowerPoint PPT Presentation
Tapestry Code less, deliver more. Rayland Jeans What is Apache Tapestry? Apache Tapestry is an open-source framework designed to create scalable web applications in Java. Tapestry allows developers to create web applications that
Code less, deliver more. Rayland Jeans
create scalable web applications in Java.
are a set of pages constructed from components.
components easy.
promotes the use of Java annotations and naming conventions.
written in Java, Groovy or Scala.
container.
components.
code is expected to conform to the framework.
classes, or implement framework-provided interfaces.
framework
code will need to be changed to match.
parameters they take, and the value that is returned.
circumstances your methods are to be invoked.”
will be covered in this presentation.
restart the web server when a change is made to a Java class.
http://xkcd.com/303/
templates.
Tapestry will discard and reload all page instances and the class loader.
application is running.
application being developed and not the web server hosting the application.
for configuration.
configuration.
conventions for configuration, such as:
configure Tapestry?
Apache Tomcat or Jetty, you do need to configure the servlet deployment descriptor (web.xml).
takes over.
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>My Tapestry Application</display-name> <context-param> <param-name>tapestry.app-package</param-name> <param-value>com.sample.app</param-value> </context-param> <filter> <filter-name>app</filter-name> <filter-class>org.apache.tapestry5.TapestryFilter</filter- class> </filter> <filter-mapping> <filter-name>app</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
Page files and your Component files.
Pages and Components are placed within your application
can be found in com.sample.app.pages and Components can be found in com.sample.app.components
<context-param> <param-name>tapestry.app-package</param-name> <param-value>com.sample.app</param-value> </context-param
configurations.
application module class under the root package of the
com.sample.app.services for the AppModule
class.
<filter> <filter-name>app</filter-name> <filter-class>org.apache.tapestry5.TapestryFilter</filter-class> </filter>
some base super class.
need for inheritance, or interfaces.
XML configuration.
instance of a page to the thread handling the request.
variables.
created to handle all incoming requests. This means that the Servlet will usually have to be stateless, and instance variables are often of no use.
store data per-request and HttpSession objects to store data between requests.
to particular threads.
value at the end of the request.
to be instantiated.
has been reached. If it has, then Tapestry will wait for a short period for a page instance to become available before trying to instantiate a new instance.
rather than create a new instance.
“start” for locale “en” and 20 instances for locale “fr”.
a Page is also a Component, a Page will usually contain one or more Components.
template.
generate markup. In this case, the class would be required to generate the required markup for the request.
page’s component tree.
sometimes a collection of components.
template.
package com.example.pages; import org.apache.tapestry5.annotations.InjectComponent; import org.apache.tapestry5.annotations.Persist; import org.apache.tapestry5.annotations.Property; import org.apache.tapestry5.corelib.components.Zone; public class Index { @Property @Persist private int clickCount; @InjectComponent private Zone counterZone; Object onActionFromClicker() { clickCount++; return counterZone.getBody(); } } <div> <t:zone t:id=”counterZone” id=”counterZone”> <p>You have clicked the link ${clickCount} times.</p> </t:zone> <p> <t:actionlink t:id=”clicker” zone=”counterZone”> increment the count </t:actionlink> </p> </div>
Page Class Page Template
determine where your pages and components are and when to instantiate them.
found at runtime.
trace.
debugging.
error was found.
to fix the exception.
lists headerLevel as a possible alternative.
developer in mind.
such as older versions of Spring.
balancing the need to test and maintain existing code.
application and make those services easier to test.
testable pieces.
provides services to modules within a Tapestry application.
modules and services from the web framework module.
Class Factory Property Access Type Coercer Symbol Sources Application Globals Request Cookies Application State Manager
Tapestry IoC Module Tapestry Module
the proxy is invoked, the service is instantiated.
services to a Tapestry application.
service to Tapestry to make it available using the AppModule class.
implementation.
developers to work on the same code base, lowering the risk of interference and conflict.
sophisticated support is provided right out of the box.
and automatically minify JavaScript libraries.
libraries from within your Java code.
annotations.
component mixins.
built-in component.
to be rendered.
by a Form.
being required to write any JavaScript.
package com.example.pages; import org.apache.tapestry5.annotations.InjectComponent; import org.apache.tapestry5.annotations.Persist; import org.apache.tapestry5.annotations.Property; import org.apache.tapestry5.corelib.components.Zone; public class Index { @Property @Persist private int clickCount; @InjectComponent private Zone counterZone; Object onActionFromClicker() { clickCount++; return counterZone.getBody(); } } <div> <t:zone t:id=”counterZone” id=”counterZone”> <p>You have clicked the link ${clickCount} times.</p> </t:zone> <p> <t:actionlink t:id=”clicker” zone=”counterZone”> increment the count </t:actionlink> </p> </div>
to work with Tapestry, instead there is a lot of unlearning.
about writing Java web applications using Servlets and JSP’s.
there may need to be some redesign in the code to migrate existing code to work in Tapestry.
as JQuery.
and make it difficult to generate the URL content required.
Java web application.
and Hibernate easy.
developers by allowing developers to write clean Java code for pages and components
developing web GUIs often spend most of their GUI development time trying to figure out or re-learn how the framework works.
have passed since the last web development task.
difficult and time consuming.
consumed by configuration is removed, which leaves more time to write code.
business and not get distracted by the framework.
applications than other Java web frameworks.
the built-in Inversion of Control container.
this presentation such as:
Tapestry 5 website.
http://tapestry.apache.org
http://tapestry5-jquery.com/