Struts 2 Tiles Plugin Tutorial with Example in Eclipse

Welcome to Part-4 of the 7-part series where we will go through different aspects for Struts2 Framework with some useful examples. In previous part we went through Struts2 Validation Framework. We saw how easy it is to integrate validation in your struts2 application. In this part we will discuss about Tiles Framework and its Integration with Struts2. We will add Tiles support to our HelloWorld Struts application that we created in previous parts. I strongly recommend you to go through previous articles and download the source code of our sample application. [sc:Struts2_Tutorials]

Introduction to Tiles 2

Nowadays, website are generally divided into pieces of reusable template that are being rendered among different web pages. For example a site containing header, footer, menu etc. This items remains same through out the website and give it a common look and feel. It is very difficult to hard code this in each and every webpage and if later a change is needed than all the pages needs to be modified. Hence we use templatization mechanism. We create a common Header, Footer, Menu page and include this in each page. Tiles Plugin allow both templating and componentization. In fact, both mechanisms are similar: you define parts of page (a “Tile”) that you assemble to build another part or a full page. A part can take parameters, allowing dynamic content, and can be seen as a method in JAVA language. Tiles is a templating system used to maintain a consistent look and feel across all the web pages of a web application. It increase the reusability of template and reduce code duplication. A common layout of website is defined in a central configuration file and this layout can be extended across all the webpages of the web application.

Our Application Layout

Our goal is to add Header, Footer and Menu to our StrutsHelloWorld application. Following will be the layout of the same.

Required JAR files

In order to add Tiles support to our Struts2 application, we will need few jar files. Following is the list of JARs in our example. Add these JARs in WEB-INF/lib folder.

Configuring Tiles in web.xml

To configure Tiles, an entry for listener has to be made in web.xml. Open the web.xml from WEB-INF folder and add following code into it.
<listener> <listener-class> org.apache.struts2.tiles.StrutsTilesListener </listener-class> </listener> <context-param> <param-name>tilesDefinitions</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param>
Code language: HTML, XML (xml)
The above code configure Tiles listener in web.xml. An input configuration file /WEB-INF/tiles.xml is passed as argument. This file contains the Tiles definition for our web application. Create a file tiles.xml in WEB-INF folder and copy following code into it.
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN" "http://tiles.apache.org/dtds/tiles-config_2_0.dtd"> <tiles-definitions> <definition name="baseLayout" template="/BaseLayout.jsp"> <put-attribute name="title" value="" /> <put-attribute name="header" value="/Header.jsp" /> <put-attribute name="menu" value="/Menu.jsp" /> <put-attribute name="body" value="" /> <put-attribute name="footer" value="/Footer.jsp" /> </definition> <definition name="/welcome.tiles" extends="baseLayout"> <put-attribute name="title" value="Welcome" /> <put-attribute name="body" value="/Welcome.jsp" /> </definition> <definition name="/customer.tiles" extends="baseLayout"> <put-attribute name="title" value="Customer Form" /> <put-attribute name="body" value="/Customer.jsp" /> </definition> <definition name="/customer.success.tiles" extends="baseLayout"> <put-attribute name="title" value="Customer Added" /> <put-attribute name="body" value="/SuccessCustomer.jsp" /> </definition> </tiles-definitions>
Code language: HTML, XML (xml)
Here in tiles.xml we have define a template baseLayout. This layout contains attributes such as Header, Title, Body, Menu and Footer. The layout is then extended and new definitions for Welcome page and Customer page is defined. We have override the default layout and changed the content for Body and Title.

Creating JSPs

We will define the template for our webapplication in a JSP file called BaseLayout.jsp. This template will contain different segments of web page (Header, Footer, Menu etc). Create 4 new JSP files BaseLayout.jsp, Header.jsp, Menu.jsp and Footer.jsp and copy following content in each of them. BaseLayout.jsp
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title><tiles:insertAttribute name="title" ignore="true" /></title> </head> <body> <table border="1" cellpadding="2" cellspacing="2" align="center"> <tr> <td height="30" colspan="2"><tiles:insertAttribute name="header" /> </td> </tr> <tr> <td height="250"><tiles:insertAttribute name="menu" /></td> <td width="350"><tiles:insertAttribute name="body" /></td> </tr> <tr> <td height="30" colspan="2"><tiles:insertAttribute name="footer" /> </td> </tr> </table> </body> </html>
Code language: HTML, XML (xml)
Header.jsp
<%@ page contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <h2>Struts2 Example - ViralPatel.net</h2>
Code language: HTML, XML (xml)
Menu.jsp
<%@ page contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <s:a href="customer-form">Customer</s:a>
Code language: HTML, XML (xml)
Footer.jsp
<%@ page contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> Copyright &copy; ViralPatel.net
Code language: HTML, XML (xml)

Modifications in Struts.xml

In struts.xml we defined result tag which maps a particular action with a JSP page. Now we will modify it and map the result with Tiles. Following will be the content of struts.xml file.
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.enable.DynamicMethodInvocation" value="false" /> <constant name="struts.devMode" value="false" /> <constant name="struts.custom.i18n.resources" value="ApplicationResources" /> <package name="default" extends="struts-default" namespace="/"> <result-types> <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult" /> </result-types> <action name="login" class="net.viralpatel.struts2.LoginAction"> <result name="success" type="tiles">/welcome.tiles</result> <result name="error">Login.jsp</result> </action> <action name="customer" class="net.viralpatel.struts2.CustomerAction"> <result name="success" type="tiles">/customer.success.tiles</result> <result name="input" type="tiles">/customer.tiles</result> </action> <action name="customer-form"> <result name="success" type="tiles">/customer.tiles</result> </action> </package> </struts>
Code language: HTML, XML (xml)
The struts.xml now defines a new Result type for Tiles. This result type is used in <result> tag for different actions. Also note that we have define a new action customer-form. This is just an empty declaration to redirect user to Customer form page when she clicks Customer link from menu.

That’s All Folks

Compile and Execute the application in Eclipse and see that the header, menu and footer are properly applied. Welcome Page with Tiles Customer Page with Tiles Customer Success Page with Tiles

Download Source Code

Click here to download Source Code without JAR files (11KB)

Moving On

Today we saw how we can configure Tiles framework with Struts2 application. In next part we will discuss about Struts2 Interceptors and see example of it. I hope you liked this article. Feel free to post your queries and comments in comment section.

View Comments

  • Congratulations on this tutorial, I would like to make two comments:
    1) I downloaded the latest version of Struts2 and comes with the library "struts2-core-2.1.8.1.jar". With this library do not work the examples. You have to install the versions "struts2-core-2.0.14.jar" you include the link in part 1 of tutorial that really works well. I have not tested with the version "struts2-core-2.1.6.jar".
    2) I have a problem with Part 4 of the tutorial. I do not understand that serving the "customer-form" as well when you click on the link "customer" an error "HTTP Status 404 - / StrutsHelloWorld / Customer-form" ocurs. I have reviewed the signs of the tutorial and I can not see my mistake.
    Thanks in advance

    • @All: To fix error 404, please correct file Menu.jsp. Add href = "customer-form.action".
      Customer

  • Hi Viral Patel ,
    Thanks for the tutorial,
    It is very helpful ,
    Iam having below queries on Tiles
    Is it possible to use struts tiles like Iframe/Div ?
    ie. can i call different URLs in header and footer in above example?

    Kindly reply,

  • Hi Viral,

    Nice tutorials ..!

    But in the Tiles tutorial, I'm facing the same problem, which was mentioned above by Pedro.

    error:
    ----------------------------------------------
    HTTP Status 404 - /mystuff/customer-form
    type Status report

    message /mystuff/customer-form

    description The requested resource (/mystuff/customer-form) is not available.
    ----------------------------------------------
    And, I'm are eagerly waiting for your "Struts 2 Ajax Tutorial with Example"

    Kindly reply viral

  • Hey Viral

    Thanks for the tutorials. Though I was stuck in running the hello world but I managed to get it through. Also is there any forums or any thing in which I can ask you about some concepts & meanings of the syntax?? You understand what I am saying??

    Regards

    Sadia

  • Hi Viral,

    great tutorial! Thank you very much for your work! BTW, i had to modyfiy the Customer.jsp and Welcome.jsp Files to get them displayed correctly with Tiles - if BaseLayout.jsp contains the complete XHTML framework, the "content tiles" should only contain the content of the body tags, i suppose? But maybe this is due to my usage of a css/div-based layout? In addition, i had to change the "add customer" link in Welcome.jsp so it points to customer-form instead of Customer.jsp - otherwise i loose my Tiles-Layout.

    Regards
    florian

  • I am having problems. when I click on the customer or add customer button then it shows the customer.action without the tiles & not in the way its show in the picture. then when I press add customer then it shows in the body tile???what could be the problem?

  • I got the error
    ———————————————-
    HTTP Status 404 – /mystuff/customer-form
    type Status report

    message /mystuff/customer-form

    description The requested resource (/mystuff/customer-form) is not available.
    ———————————————-
    Can anyone share how to fix it?

    NK

  • Hi,
    This is a nice tutorial, I appreciate your help.

    It's working fine for me, just don't know why it's not taking the whole page, I only see it as a small square in the top center of the page.

    thanks

  • For those that are still trying to fix the 404 on customer-form
    in Welcome.jsp and Menu.jsp the href should now point to "customer-form.action" not "customer-form"

    Hope this helps

  • I have downloaded the example and added the Jar, but when i run it on server, it is giving error "The requested resource (/StrutsHelloWorld/) is not available.", I dont know where i am missing, can u please guide me as i understand everything but i want to chek it out in practical . Thanks in advance,

Share
Published by
Viral Patel
Tags: Struts Struts2 struts2-series tiles tiles-plugin

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago