|
|
To gain a greater understanding of concept of SOA applications, BPEL processes and JBI applications, and to enable us to develop enterprise level SOA applications, we need to understand JBI in further depth, and how JBI components can be linked together. This article by Frank Jennings and David Salter will show the JBI Service Engine is supported within the NetBeans Enterprise Pack. See More |
Tapestry 5 Advanced Components
Following are some of the components, we'll examine:
Grid ComponentIt is possible to display our collection of celebrities with the help of the Loop component. It isn't difficult, and in many cases, that will be exactly the solution you need for the task at hand. But, as the number of displayed items grow (our collection grows) different problems may arise. We might not want to display the whole collection on one page, so we'll need some kind of pagination mechanism and some controls to enable navigation from page to page. Also, it would be convenient to be able to sort celebrities by first name, last name, occupation, and so on. All this can be achieved by adding more controls and more code to finally achieve the result that we want, but a table with pagination and sorted columns is a very common part of a user interface, and recreating it each time wouldn't be efficient. Thankfully, the Grid component brings with it plenty of ready to use functionality, and it is very easy to deal with. Open the ShowAll.tml template in an IDE of your choice and remove the Loop component and all its content, together with the surrounding table: <table width="100%"> In place of this code, add the following line: <t:grid t:source="allCelebrities"/> Run the application, log in to be able to view the collection, and you should see the following result:
Quite an impressive result for a single short line of code, isn't it? Not only are our celebrities now displayed in a neatly formatted table, but also, we can sort the collection by clicking on the columns' headers. Also note that occupation now has only the first character capitalized—much better than the fully capitalized version we had before. Here, we see the results of some clever guesses on Tapestry's side. The only required parameter of the Grid component is source, the same as the required parameter of the Loop component. Through this parameter, Grid receives a number of objects of the same class. It takes the first object of this collection and finds out its properties. It tries to create a column for each property, transforming the property's name for the column's header (for example, lastName property name gives Last Name column header) and makes some additional sensible adjustments like changing the case of the occupation property values in our example. All this is quite impressive, but the table, as it is displayed now, has a number of deficiencies:
By default, to define the display of the order of columns in the table, Tapestry will use the order in which getter methods are defined in the displayed class. In the Celebrity class, the getFirstName method is the first of the getters and so the First Name column will go first, and so on. There are also some other issues we might want to take care of, but let's first deal with these four.
Tweaking the GridFirst of all let's change the number of records per page. Just add the following parameter to the component's declaration: <t:grid t:source="allCelebrities" rowsPerPage="5"/> Run the application, and here is what you should see:
You can now easily page through the records using the attractive pager control that appeared at the bottom of the table. If you would rather have the pager at the top, add another parameter to the Grid declaration: <t:grid t:source="allCelebrities" rowsPerPage="5" You can even have two pagers, at the top and at the bottom, by specifying pagerPosition="both", or no pagers at all (pagerPosition="none"). In the latter case however, you will have to provide some custom way of paging through records. The next enhancement will be a link surrounding the celebrity's last name and linking to the Details page. We'll be adding an ActionLink and will need to know which Celebrity to link to, so we have the Grid store using the row parameter. This is how the Grid declaration will look: <t:grid t:source="allCelebrities" rowsPerPage="5" As for the page class, we already have the celebrity property in it. It should have been left from our experiments with the Loop component. It will also be used in exactly the same way as with Loop, while iterating through the objects provided by its source parameter, Grid will assign the object that is used to display the current row to the celebrity property. The next thing to do is to tell Tapestry that when it comes to the contents of the Last Name column, we do not want Grid to display it in a default way. Instead, we shall provide our own way of displaying the cells of the table that contain the last name. Here is how we do this: <t:grid t:source="allCelebrities" rowsPerPage="5" Here, the Grid component contains a special Tapestry element Finally, inside Run the application, and you should see that we have achieved what we wanted:
Click on the last name of a celebrity, and you should see the Details page with the appropriate details on it. All that is left now is to remove the unwanted Id column and to change the order of the remaining columns. For this, we'll use two properties of the Grid—remove and reorder. Modify the component's definition in the page template to look like this: <t:grid t:source="celebritySource" rowsPerPage="5" Please note that re-ordering doesn't delete columns. If you omit some columns while specifying their order, they will simply end up last in the table. Now, if you run the application, you should see that the table with a collection of celebrities is displayed exactly as we wanted:
Changing the Column TitlesColumn titles are currently generated by Tapestry automatically. What if we want to have different titles? Say we want to have the title, Birth Date, instead of Date Of Birth. The easiest and the most efficient way to do this is to use the message catalog, the same one that we used while working with the Select component in the previous chapter. Add the following line to the app.properties file: dateOfBirth-label=Birth Date Run the application, and you will see that the column title has changed appropriately. This way, appending -label to the name of the property displayed by the column, you can create the key for a message catalog entry, and thus change the title of any column. Now you should be able to adjust the Grid component to most of the possible requirements and to display with its help many different kinds of objects. However, one scenario can still raise a problem. Add an output statement to the getAllCelebrities method in the ShowAll page class, like this: public List<Celebrity> getAllCelebrities() The purpose of this is simply to be aware when the method is called. Run the application, log in, and as soon as the table with celebrities is shown, you will see the output, as follows: Getting all celebrities... The Grid component has the allCelebrities property defined as its source, so it invokes the getAllCelebrities method to obtain the content to display. Note however that Grid, after invoking this method, receives a list containing all 15 celebrities in collection, but displays only the first five. Click on the pager to view the second page—the same output will appear again. Grid requested for the whole collection again, and this time displayed only the second portion of five celebrities from it. Whenever we view another page, the whole collection is requested from the data source, but only one page of data is displayed. This is not too efficient but works for our purpose. Imagine, however, that our collection contains as many as 10,000 celebrities, and it's stored in a remote database. Requesting for the whole collection would put a lot of strain on our resources, especially if we are going to have 2,000 pages. We need to have the ability to request the celebrities, page-by-page—only the first five for the first page, only the second five for the second page and so on. This ability is supported by Tapestry. All we need to do is to provide an implementation of the GridDataSource interface. Here is a somewhat simplified example of such an implementation.
Using GridDataSourceFirst of all, let's modify the IDataSource interface, adding to it a method for returning a selected range of celebrities: public interface IDataSource Next, we need to implement this method in the available implementation of this interface. Add the following method to the MockDataSource class: public List<Celebrity> getRange(int indexFrom, int indexTo) The code is quite simple, we are returning a subset of the existing collection starting from one index value and ending with the other. In a real-life implementation, we would probably check whether indexTo is bigger than indexFrom, but here, let's keep things simple. Here is one possible implementation of GridDataSource. There are plenty of output statements in it that do not do anything very useful, but they will allow us to witness the inner life of Grid and GridDataSet in tandem. Have a look at the code, and then we'll walk through it step-by-step: package com.packtpub.celebrities.util; First of all, when creating an instance of CelebritySource, we are passing an implementation of IDataSource that will imitate an actual data source to its constructor. In real life this could be some Data Access Object. The GridDataSource interface that we implemented contains four methods: getAvailableRows(), prepare(), getRowValue(), and getRowType(). The simplest of them is getRowType(). It simply reports which type of objects are served by this implementation of GridDataSource. The getAvailableRows method returns the total number of entities available in the data source (this is needed to know the number of pages and to construct the pager properly). In our case, we are simply returning the size of a collection. In real life, this method could contain a request to the database that would return the total available number of records in a search result, without actually returning all those records. If you insert an output statement into this method, you will notice that it is invoked by Grid several times, even while a single page of the table is displayed. You will not want to call the database that many times, so you will need to include some logic to cache the result returned by this method, and update it only when necessary. But, again, we are looking at the principles here, so let's keep everything simple. The prepare method does the main job of requesting the database and obtaining a subset of entities from it to be displayed by the current page of the table. The subset is limited by the first two parameters—indexFrom and indexTo, which are the indexes of the first and the last entities to be returned. They might be used in a SELECT statement which would command the database to select all the entities and then limit the selection in one way or another, depending on the SQL dialect. The third parameter of this method, propertyModel, is used to define the column by which the result should be sorted. Again, we could use this parameter in a SELECT statement, but here we are simply outputting the name of the property to see what the Grid has passed to the method. Finally, the ascending parameter could be used to define the order in which the results should be sorted when speaking to the database, but we are just outputting its value. The last of the four methods, getRowValue(), returns the entity requested by Grid using its index as a parameter. You will see how all this works soon. To make use of the created CelebritySource, add the following method to the ShowAll page class: public GridDataSource getCelebritySource() Then change the source parameter of the Grid component in ShowAll.tml template: <t:grid t:source="celebritySource" rowsPerPage="5" Run the application. Log in to view the ShowAll page, and as soon as the table with celebrities is displayed, you should see the following output: Preparing selection. From this you can see that to display the first page of results, the Grid component invoked the methods of the GridDataSource implementation provided by its source parameter in a certain succession. The output shows that the prepare method was invoked with the indexFrom parameter set to 0, and the indexTo parameter set to 4. These are indexes of the first five celebrities in collection. The propertyModel parameter was null, so no specific sorting was requested. Finally, the getRowValue method was invoked five times to obtain an object to be displayed by each of the five rows in the table. Click on the pager to view the second page of results and the result will be similar, only the indices will be different: Preparing selection. Click on the header of one of the columns, and you will see the change in the property name passed to the prepare method: Property name is: lastName Now the data source will be requested to sort the result by last name. Of course, no sorting will take place in our simplified example as we are simply outputting the name of the property and not using it in an actual request to a database. Click on the same column once again, and this time you will see that the order of sorting is changed: Property name is: lastName You can see from this example that Tapestry allows us to define precisely how a database (or other data source) should be called, and we can request data, page-by-page by creating an implementation of GridDataSource interface. The Grid component will then invoke the methods of this interface and display the information returned by them appropriately. Next, we are going to see another advanced component, BeanEditForm. It is somewhat similar to Grid in that it also can make use of BeanModel, and its configuration is pretty similar too. BeanEditForm ComponentOur current collection of celebrities is tiny, and it would be a good idea to provide in the application functionality for adding new celebrities. Let's begin by adding a template and a page class for a new page named AddCelebrity. Add to the page class a single persistent property named celebrity, so that its code looks like this: package com.packtpub.celebrities.pages; In the page template, declare one single component of type BeanEditForm and let its id be the same as the name of the property of the page class, in our case, celebrity: <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"> We also need to somehow connect the new page to the rest of the application. For instance, we could add this new PageLink component somewhere at the bottom of the ShowAll page: <a href="#" t:type="PageLink" t:page="AddCelebrity">Add new Finally, to make things more interesting, add another couple of properties to the Celebrity class (don't forget to generate getters and setters for them): private String biography; Say we could store a brief biography in the first property, and the second could be set to true whenever we verify in some way that the birth date is correct. Run the application, log in, and at the ShowAll page, click on the link leading to the new AddCelebrity page. You will see the BeanEditForm in all its glory:
Isn't it amazing how much can be done for us by Tapestry when we just drop one component onto the page, with virtually no configuration? Let's see how all this magic works:
This list of features already looks quite impressive for a default configuration, but there are more miracles to see. Purely for the purpose of demonstration, enter some non-numeric value, like abc, into the Id field and click on the Create/Update button. You will see something similar to this:
Which means that in addition to everything else, BeanEditForm comes with a pre-configured system of user input validation, and applies reasonable restrictions to its fields, like it prevents entering a non-integer value for an integer property. User input validation is the topic for the next chapter, but you can already see that without any efforts from our side, the validation system of Tapestry 5 does quite a lot—it changes the style of the field in error, its label and adds an error marker, and also displays an appropriate error message at the top of the form. Well, the error message is somewhat misplaced at the moment, but we'll deal with this problem later. Do you still remember that to obtain all this wealth of functionality, all we had to do is to insert a short line of markup into the page template? Here it is again: <t:beaneditform t:id="celebrity"/> Tweaking BeanEditFormThere are a few parameters that we could use to tweak the component. First of all, you will probably want the submit button to display a different label, not the default Create/Update. Nothing could be easier: <t:beaneditform t:id="celebrity" t:submitLabel="Save"/> You can also explicitly specify the object that BeanEditForm should work with, and use an arbitrary id: <t:beaneditform t:id="celebrityEditor" t:object="celebrity" Although BeanEditForm made a lot of clever guesses, in many cases we shall want to somehow influence the way it works. As with the Grid component in the previous section, we'll want to remove the Id field and change the order of fields in the form, so that the Birth Date Verified check box is underneath the Birth Date control. By the way, did you notice that the label for this control is Birth Date, not Date Of Birth, as would be automatically generated by Tapestry? This is because of the entry that we've added to the app.properties file. That file is used by the whole application, and every label associated with the dateOfBirth ID will automatically receive the value from the message catalog. The way we tidy up the BeanEditForm is very similar to what we did with the Grid component: <t:beaneditform t:id="celebrity" t:submitLabel="Save" The other change we might want to make is to change the control that is used for Biography. Even though the biography will be brief, a text box is not convenient for entering a long string. There is a much more convenient control for this purpose in HTML, <textarea>. In Tapestry, such control can be displayed by the TextArea component. Here is what we should do to override the default choice for editing the biography property of the displayed object: <t:beaneditform t:id="celebrity" t:submitLabel="Save" In a way similar to what we did with the Grid component to override the default rendering of a certain column, we are using a If you run the application now, the form should look like this:
This is already better. If you think that you'd prefer to have more space for a biography, try this: <t:textarea t:id="biography" t:value="celebrity.biography" As cols and rows attributes do not belong to parameters of Tapestry's TextArea component, they will be simply passed to the resulting <textarea> HTML control. Run the application and see how the form looks now. At this point, let's distract ourselves to explore the new component that magically appeared in BeanEditForm, it deserves it.
DateField ComponentThis is a new addition that appeared only in the latest 5.0.6 version of Tapestry. Now we can use this beautiful, JavaScript-powered control without seeing even a single line of JavaScript. DateField is based on an open source DHTML/JavaScript calendar that can be found at http://www.dynarch.com/projects/calendar/. Let's add one more piece of information to those that we already collect from the users at the Registration page—Date Of Birth. Add this table row to the template, perhaps straight under the controls used for gender selection: <tr> We'll also need a property to store the selected date in the Registration page class: @Persist Run the application, go to the Registration page, and you will see the new control on it:
Click on the small icon to the right, and in the beautiful calendar that opens you will be able to choose a date:
However, by default the selected date will be displayed in the American format, like 10/31/07 for the 31st of October. What if you would rather prefer to see it in the European format, 31/10/07? We can use the format property of the DateField component to display the date how we like: <input type="text" t:type="datefield" t:value="dateOfBirth" You can also construct a completely different date format. For example, %b %e, %Y will produce the result Oct 31, 2007. For the complete list of formatting characters check http://www.dynarch.com/demos/jscalendar/doc/html/reference.html#node_sec_5.3.1, but the following are a few that might be most useful:
We can use the DateField component everywhere we need to edit a property of the java.util.Date type. Whenever the BeanEditForm components finds a property of this type in the edited JavaBean, it selects DateField to edit that property automatically. Changing the Styles of Grid and BeanEditFormEverything works fine but looks less than perfect. For example, the labels of BeanEditForm are cramped on the left side of the form so that lines like Birth Date Verified have to split into two lines, and it misplaces the other labels as a result. Also, the background color and the font used by default for Grid and BeanEditForm might not fit the design of your application. Fortunately, the appearance of these components is defined by CSS styles, and so we can easily influence how they look by changing the styles. Tapestry provides a default stylesheet, named appropriately default.css, and this is exactly where the styling of its components is defined. Tapestry adds the default stylesheet in such a way that it will always be the first for every page, and so any stylesheet that we provide can override whatever is defined in default.css. To make the desired changes, we need to provide a stylesheet of our own and in it declare the same styles as in default.css—with the same names, but with different content. As the first step, we might want to look into the default.css file. It can be found in the Tapestry source code package that can be downloaded from http://tapestry.apache.org/download.html. The name of the package will be similar to tapestry-src 5.0.6 binary (zip). The default.css file can be found inside the package, in the tapestry-coresrcmainresourcesorgapachetapestry subdirectory. This file contains a significant number of styles, but those related to BeanEditForm have t-beaneditor in their name, and those related to Grid contain t-data-grid. Let's say we want to change the background of BeanEditForm to white, the surrounding border to green and give more space to the labels. Admittedly, I am not an expert in CSS, but it is not actually difficult to figure out what exactly should be changed. These are the two style definitions we shall want to tweak: DIV.t-beaneditor The first of them defines the appearance of the form in general, the second—the appearance of the labels used for the fields in the form. It is easy to guess that the first definition will allow us to change, most significantly, the background, the border and the font of the form, while the second allows us to change the space given to the labels (currently only 10% of the width of the page). But where do we put our own style definitions? It will be convenient to have a directory for all the assets of our web application, let's name it appropriately, styles. It should be created at the root of the web application, on the same level where page templates are placed. To create it in NetBeans, right click on the Web Pages folder inside the project structure. Select New|File/Folder…, then Other in Categories and Folder in File Types. Click on Next, give the new folder a name, and then click on Finish. Now right click on the new styles folder and again select New|File Folder…. Choose Other for Categories, Empty File for File Types, click on Next and name the new file something like styles.css. In Eclipse, the sequence of actions will be similar, but the new styles folder should be added to the WebContent folder in the project structure. Now we can put the aforementioned style definitions into styles.css, and change them as required. Let's try something like this: DIV.t-beaneditor In fact, it should be enough to leave only the highlighted lines here as the other details were already specified in the default style sheet. We can also influence the positioning of the Save button: input.t-beaneditor-submit However, to see the changes, we need to make the new stylesheet available to the web page. Tapestry can inject an asset, be it a stylesheet or an image, into the page class when we ask it to do that, so let's add to the AddCelebrity page class to the following lines of code: @Inject Finally, provide in the page template a link to the stylesheet: <head> If you run the application now, you will notice a significant difference in the form's appearance:
You can continue experimenting from here with styles on your own, using the default.css file and the source code of the rendered page (where you can see which styles are used for what) as your starting point. But let me show you one more very useful component. FCKEditor ComponentQuite often, we might want to give the users of our application an opportunity not only to enter a message, but also to format it similarly to how they would do this in a familiar word processor. There are JavaScript-enabled rich text editors available for this purpose, the most famous of them is perhaps FCKEditor (http://www.fckeditor.net/), but integrating such an editor into a web application might require additional knowledge and effort. Thankfully, there is a custom Tapestry 5 component developed by Ted Steen and Olof Naessen that wraps FCKEditor. As a result, we can use this excellent rich text editor in the same way like any other Tapestry component. The component can be downloaded from http://code.google.com/p/tapestry5-fckeditor/ as a JAR file (make sure you pick the version, 1.0.2 or later). The name of the file will be similar to tapestry5-fckeditor-1.0.2.jar. Please put it into the WEB-INF/lib subfolder of our web application. In Eclipse, you might want to press F5 to make sure that the IDE has noticed the addition. Let's use the FCKEditor component to enter a celebrity's biography at the AddCelebrity page. All we need to do is to change the type of component used to edit the biography property in the page template: <t:parameter name="biography"> The result of this change might look a bit overwhelming:
By default, the component is huge as it displays all the goodies made available by the original FCKEditor. In many cases you will not need all that, and there is an easy way to both change the number of displayed toolbars and change the size of the component. There are three toolbar sets available—Default, Simple and Medium, and we can choose using the toolbarSet parameter. There are also width and height parameters that allow us to specify the size of the component. Here is one possible combination of settings: <t:fckeditor.editor t:id="biography" And here is how the resulting component looks:
Well, I have to admit that to get the component properly positioned in Internet Explorer 7, I had to use some additional markup, to place the FCKEditor component and its label inside a simple table, like this: <t:parameter name="biography"> My favorite toolbar set is the medium one. This is how it looks:
After the text of the biography is entered, formatted and submitted, what gets sent to the server (and is stored in a property of the page class) is a piece of HTML with all the markup that is needed to reproduce the formatting. We can later display the biography on the details page, but right now we need to make sure that the new information (and a new Celebrity object containing it) is stored properly in the data source. All we need to do for this is to add the following fragment of code to the AddCelebrity page: @ApplicationState We have added an event handler and a reference to the data source ASO. When the form with the new celebrity is submitted, we store the resulting Celebrity object using the data source existing for this purpose and display the ShowAll page. However, at the moment the table that displays our collection has two extra columns, for biography, and birthDateVerified properties. We do not want to see them, so let's modify the ShowAll page template: <t:grid t:source="celebritySource" rowsPerPage="5" Finally, to get the biography displayed at the Details page, let's make the necessary preparations. All we need to do is to add the following piece of markup to the page template: <tr> Now add a new celebrity and a brief biography for him or her as I did above for John Lennon. Format the biography using different styles and colors to your heart's content and then click on the Save button. You will see the ShowAll page and the newly added celebrity will be somewhere at the end of collection, perhaps on page four. Find the new celebrity and click on the last name to see the details. Depending on how you formatted the biography, you should see something similar to this:
As you can see, all the formatting is displayed properly, and this is the reason why we used a new component, OutputRaw in the last example. In fact, this component is quite similar to an ordinary Output component, or even to a basic extension—it simply outputs whatever is given to it as a value. The difference is that both regular output and extension encode the content that they insert into the page while OutputRaw just inserts into the resulting HTML its value, no matter what it contains. For instance, if the value provided by the component's binding is <b>bold text</b> then regular output will encode angle brackets and produce the following result: <b%gt;bold text</b>. As a result, instead of formatted text, the page will display the tags verbatim: <b>bold text</b>. The OutputRaw however will insert into the page what was given to it, and as a result, we'll see bold text. Security Note: Please use the OutputRaw component with caution. If you will use it to freely display any content entered by a random user, someone might enter a hostile script and achieve sinister results that you cannot even imagine. All right, we had enough of work and study in this article. Now we can relax and review what was done. SummaryWe have learned to use four powerful and useful components—Grid, BeanEditForm, DateField and FCKEditor. They can save us a lot of work since with minimal configuration, they produce a rather sophisticated, functionally rich piece of interface. We have also found out that:
We can change the appearance of the components by overriding the default CSS styles in the stylesheet that we provide ourselves.
About the AuthorAlexander Kolesnikov is an author and software developer from Greenock, Scotland. He wrote his first program in FORTRAN back in 1979 for a computer that occupied several rooms. He currently works as a Java Web Developer for CIGNA International. A Soviet military researcher in the past, he recently graduated as a Master of Science with Distinction in Enterprise Systems Development from Glasgow Caledonian University and has also gained a number of professional certifications from Sun Microsystems (SCJP, SCWCD, SCBCD). His first book on software development was "Java Drawing With Apache Batik" (BrainySoftware, 2007). He is interested in many things, ranging from the most recent web technologies to alternative medicine and wishes wholeheartedly that a day was at least three times longer than it is. Books from Packt |
TOP TITLES |
| ||||||