Questions tagged [tiles2]

Apache Tiles™ is a Java templating framework built to simplify the development of web application user interfaces.

Apache Tiles™ is a Java templating framework built to simplify the development of web application user interfaces. Tiles uses the composition pattern as opposed to the decorator pattern, which the name "tiles" suggests. Tiles templates are made up of "definitions" which are typically defined with XML, however definitions can be constructed with the Tiles API.

Tiles has the following notable features:

  • Support for FreeMarker, Velocity and JSP.
  • Support for pattern matching using regular expressions.
  • EL, OGNL and MVEL support in definition files, when specifying attributes and templates.
  • Offers some support for decoration and runtime composition

For a current list of features see: http://tiles.apache.org/framework/whats-new.html

200 questions
0
votes
1 answer

Combination of Tile2 + Spring3 + Struts2

I have implemented Spring security on Struts2 which perfectly works. Once I have added tiles to my project it runs into following error, I have provided some parts of my code, please let me know if you need more. WARNING: StandardWrapperValve[jsp]:…
J888
  • 1,944
  • 8
  • 42
  • 76
0
votes
1 answer

Tiles 2 with Spring MVC not resolving

I am trying to integrate Tiles 2 with Spring MVC but I am getting a specific jsp displayed rather than Tiles View. For ex, If request="about.htm" then I am getting about.jsp which is kept at /jsp/about.jsp . It works as if view is getting resolved…
Umeshwali
  • 181
  • 1
  • 2
  • 14
0
votes
1 answer

Tiles in tags possible?

I'am using spring roo v.1.2.3. Roo generated *.tagx-s, *.jspx-s and views.xml-s that is good. But can I put those *.jspx page fragments in *.tagx-s. For example there is a tag table.tagx and I want to insert after each row a corresponding…
hash
  • 1,141
  • 1
  • 12
  • 20
0
votes
1 answer

Tiles Integration with Spring MVC 2.5

I am trying to integrate Tiles into our current Spring MVC (Spring 2.5) based app and for the most part it's working fine with initial pages. We have close to 300 jsp pages and a new section of website which we are implementing via…
Tiles787
  • 33
  • 1
  • 6
0
votes
1 answer

Struts2 Tiles plugin with multiple action classes

Found some very good examples online that integrate Struts 2 with Tiles 2. I noticed that ALL of them map actions using wildcard method from a single action class. Is there a reason for doing so? My application doesn't work when I map actions…
user1828016
  • 29
  • 1
  • 6
0
votes
3 answers
0
votes
1 answer

Struts.xml define global result type as Tile

I am using Tiles with Struts2. In struts.xml I need to define for every package. How can I make it global so all packages show type as tiles like
Pirzada
  • 4,685
  • 18
  • 60
  • 113
0
votes
2 answers

SpringFramework & Tiles design pattern for multiple controllers

I am new in Tiles, and I like it. My problem is, that I got a head , body and footer tile in the template definition in SpringFramework. I would like to display some user information in head tile, and display last login ip in footer with some…
Barnabas
  • 39
  • 5
0
votes
1 answer

Spring MVC and Apache Tiles: an 404 issue

Good Time. I'm trying to integrate the Spring MVC and Apache Tiles. The problem is^ when I hit the url I need, the "404 Not Found" raises. Here are my settings: web.xml
Dmitry
  • 3,028
  • 6
  • 44
  • 66
0
votes
1 answer

Usage of Tiles 2.2 with Struts 1.x (1.2) compatibility - Reg

We have started migrating our project (Web Application) which is running on Struts 1.x (1.2) from Framesets to Tiles 2.2. As stated in the Apache tiles tutorial we have made few modifications in web.xml and added tiles-defs.xml to the project. But…
Chinni
  • 137
  • 3
  • 8
0
votes
2 answers

which version of tiles plugins and jasper plugins are used with struts2 2.2.3

I want to use tiles and jasper plugins with struts2 in my web application but I am getting error while deploying the application. After doing Google I found that there is plugins version miss match in my application. When I use struts2 2.2.3 and…
0
votes
1 answer

Declaratively injecting a bean in Tiles

I'm having a running system with integrated Tiles 2.1 and Spring MVC (with the help of Spring Roo) and want to set the menu item by a very simple bean, which returns a list of items: public class TestMenu { public ArrayList getEntries() { …
rainerhahnekamp
  • 1,087
  • 12
  • 27
0
votes
1 answer

Struts tiles to Tiles migration - Changes in Spring support classes

This situation arose when I tried to upgrade Spring from version 2.1 to Spring 3.0.x in my web application. Spring 3.0.x doesn't support struts-tiles 1.3, it requires Apache Tiles 2.x. So, I also have to upgrade Struts-Tiles 1.3 to Apache Tiles 2.x.…
Sundeep
  • 1,536
  • 5
  • 23
  • 35
0
votes
1 answer

Spring MVC doesn't handle the error came from hibernate validator

I create form and controller this form have some validation constrains using Hibernate validator. I face problem when starting test the validation constrains but I got Blue Exception page with the attributemodel with the rejected. This the…
user1115139
0
votes
1 answer

How to Update a JSP in Spring MVC and Apache Tiles

I am using Apache Tiles 2 in my Spring 3 MVC application,the layout is : a menu on the left and body on the right. layout.jsp
user200340
  • 3,301
  • 13
  • 52
  • 74
1 2 3
13
14