--- Forms in Tapestry --- Chapter 5: Forms in Tapestry (Part Two) So, you fill in all the fields, submit the form (without validation errors) and voila: you get back the same form, blanked out. What happened, and where did the data go? What happened is that we haven't told Tapestry what to do after the form is succesfully submitted (by succesful, we mean, with no validation errors). Tapestry's default behavior is to redisplay the active page, and that occurs in a new request, with a new instance of the Address object (because the address field is not a peristent field). Well, since we're creating objects, we might as well store them somewhere ... in a database. We're going to quickly integrate Tapestry with {{{http://hibernate.org}Hibernate}} as the object/relational mapping layer, and ultimately store our data inside a {{{http://www.hsqldb.org/}HSQLDB}} database. HSQLDB is an embedded database engine and requires no installation -- it will be pulled down as a dependency via maven. Re-configuring the Project We're going to bootstrap this project from a simple Tapestry project to one that uses Hibernate and HSQLDB. * Updating the Dependencies First, we must update the POM to list a new set of dependencies, that includes Hibernate, the Tapestry/Hibernate integration library, and the HSQLDB JDBC driver: <> ---- org.apache.tapestry tapestry-hibernate ${tapestry-release-version} hsqldb hsqldb 1.8.0.7 ---- The tapestry-hibernate library includes, as transitive dependencies, Hibernate and tapestry-core. This means that you can simply replace "tapestry-core" with "tapestry-hibernate" inside the \ element. Since Hibernate can work with so many different databases, we must explicitly add in the correct driver. * Hibernate Configuration Hibernate has a master configuration file used to store connection and other data. <> ---- org.hsqldb.jdbcDriver jdbc:hsqldb:./target/work/t5_tutorial1;shutdown=true org.hibernate.dialect.HSQLDialect sa update true true ---- Most of the configuration is to identify the JDBC driver and connection URL. Note the connection URL. We are instructing HSQLDB to store its database files within our project's target directory. We are also instructing HSQLDB to flush any data to these files at shutdown. This means that data will persist across different invocations of this project, but if the target directory is destroyed (e.g., via "mvn clean"), then all the database contents will be lost. In addition, we are configuring Hibernate to the database schema; when Hibernate initializes it will create or even modify tables to match the entities. Finally, we are configuring Hibernate to output any SQL it executes, which is very useful when initially building an application. But what entities? Normally, the available entities are listed inside hibernate.cfg.xml, but that's not necessary with Tapestry; in another example of convention over configuration, Tapestry locates all entity classes inside the entities package and adds them to the configuration. Currently, that is just the Address entity. Adding Hibernate Annotations For an entity class to be used with Hibernate, some Hibernate annotations must be added to the class. Below is the updated Address class, with the Hibernate annotations (as well as the Tapestry ones). <> ---- package org.apache.tapestry5.tutorial.entities; import org.apache.tapestry5.beaneditor.NonVisual; import org.apache.tapestry5.beaneditor.Validate; import org.apache.tapestry5.tutorial.data.Honorific; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class Address { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @NonVisual private Long id; private Honorific honorific; @Validate("required") private String firstName; @Validate("required") private String lastName; private String street1; private String street2; @Validate("required") private String city; @Validate("required") private String state; @Validate("required,regexp") private String zip; private String email; private String phone; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Honorific getHonorific() { return honorific; } public String getFirstName() { return firstName; } public String getLastName() { return lastName; } public String getStreet1() { return street1; } public String getStreet2() { return street2; } public String getCity() { return city; } public String getState() { return state; } public String getZip() { return zip; } public String getEmail() { return email; } public String getPhone() { return phone; } public void setCity(String city) { this.city = city; } public void setEmail(String email) { this.email = email; } public void setFirstName(String firstName) { this.firstName = firstName; } public void setHonorific(Honorific honorific) { this.honorific = honorific; } public void setLastName(String lastName) { this.lastName = lastName; } public void setPhone(String phone) { this.phone = phone; } public void setState(String state) { this.state = state; } public void setStreet1(String street1) { this.street1 = street1; } public void setStreet2(String street2) { this.street2 = street2; } public void setZip(String zip) { this.zip = zip; } } ---- The Tapestry annotations, @NonVisual and @Validate, may be placed on the setter or getter method or on the field (as we have done here). As with the Hibernate annotations, putting the annotation on the field requires that the field name match the corresponding property name. [@NonVisual] This annotation indicates a field, such as a primary key, that should not be made visible to the user. [@Validate] This annotations identifies the validations associated with a field. Updating the Database So we have a database up and running, and Hibernate is configured to connect to it. Let's make use of that to store our Address object in the database. What we need is to provide some code to be executed when the form is submitted. When a Tapestry form is submitted, there is a whole series of events that get fired. The event we are interested in is the "success" event, which comes late in the process, after all the values have been pulled out of the request and applied to the page properties, and after all server-side validations have occured. The success event is only fired if there are no validation errors. Our event handler must do two things: * Use the Hibernate Session object to persist the new Address object. * Commit the transaction to force the data to be written to the database. [] <> ---- package org.apache.tapestry5.tutorial.pages.address; import org.apache.tapestry5.annotations.InjectPage; import org.apache.tapestry5.annotations.Property; import org.apache.tapestry5.hibernate.annotations.CommitAfter; import org.apache.tapestry5.ioc.annotations.Inject; import org.apache.tapestry5.tutorial.entities.Address; import org.apache.tapestry5.tutorial.pages.Index; import org.hibernate.Session; public class CreateAddress { @Property private Address address; @Inject private Session session; @InjectPage private Index index; @CommitAfter Object onSuccess() { session.persist(address); return index; } } ---- The {{{../apidocs/org/apache/tapestry5/ioc/annotations/Inject.html}Inject}} annotation tells Tapestry to inject a service into the annotated field; Tapestry includes a sophisticated Inversion of Control container (similar in many ways to Spring) that is very good at locating available services by type, rather than by a string id. In any case, the Hibernate Session object is exposed as a Tapestry IoC service, ready to be injected (this is one of the things provided by the tapestry-hibernate module). Tapestry automatically starts a transaction as necessary; however that transaction will be at the end of the request. If we make changes to persistent objects, such as adding a new Address object, then it is necessary to commit the transaction. The {{{../apidocs/org/apache/tapestry5/hibernate/annotations/CommitAfter.html}CommitAfter}} annotation can be applied to any component method; if the method completes normally, the transaction will be committed (and a new transaction started to replace the committed transaction). After persisting the new address, we return to the main Index page of the application. Showing Addresses As a little preview of what's next, let's display all the Addresses entered by the user on the Index page of the application. After you enter a few names, it will look something like: [index-grid-v1.png] Adding the Grid to the Index page So, how is this implemented? Primarily, its accomplished by the {{{../tapestry-core/ref/org/apache/tapestry5/corelib/components/Grid.html}Grid}} component. The Grid component is based on the same concepts as the BeanEditForm component; it can pull apart a bean into columns. The columns are sortable, and when there are more entries than will fit on a single page, page navigation is automatically added. A minimal Grid is very easy to add to the template: <> ---- ---- And all we have to do is supply the addresses property in the Java code: <> ---- @Inject private Session session; public List
getAddresses() { return session.createCriteria(Address.class).list(); } ---- Here, we're using the Hibernate Session object to find all Address objects in the database. Any sorting that takes place will be done in memory. This is fine for now (with only a handful of Address objects in the database). Later we'll see how to optimize this for very large result sets. What's Next? We have lots more to talk about: more components, more customizations, built-in Ajax support, more common design and implementation patterns, and even writing your own components (which is easy!). ... but Tapestry and this tutorial are a work in progress, so stay patient, and check out the other Tapestry tutorials and resources available on the {{{../index.html}Tapestry 5 home page}}.