0
votes
0answers
38 views

Converting an existing Simple JSP Tiles 2.2 webapp to Tiles 3.0 architecture

I want to create a simple JSP tiles 3.0 web application. I have a header,footer, menu and a body to load the jsps. My application works in tiles 2.2 but now I'm trying to convert it to tiles 3.0 ...
0
votes
0answers
31 views

Get spring.profiles.active in Tiles.xml

Can we recover the active profile in tiles.xml? I need to display an indicator in the title of the active profile. web.xml <context-param> ...
0
votes
1answer
52 views

Spring MVC view is not detected

Few days ago this configuration works but now I have get: javax.servlet.ServletException: Could not resolve view with name '' in servlet with name 'XXX' for: ...
0
votes
1answer
25 views

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 ...
1
vote
0answers
49 views

jsp substitution in tiles.xml

I was looking at the Travel demo project and noticed that in the tiles.xml under hotel that there was the following: <definition name="hotels/*" extends="standardLayout"> ...
0
votes
1answer
195 views

Where is 'param' variable defined in Spring MVC/Apache Tiles application

A default startup Spring MVC with Apache Tiles application has a list of predefined tagx files. I find a variable ${param} is used everywhere but couldn't find there it defined and initiated, please ...
2
votes
1answer
78 views

How to have a flexible website using tile?

I have 4 different types of members in my website lets say memberA, memberB, memberC, and memberD. Each should have its own header headerA.jsp, headerB.jsp, headerC.jsp, headerD.jsp. As shown below, ...
0
votes
1answer
216 views

Communicating Within Tiles in JSP

I have a header,menu and a body to load the jsps. When i click a menu element everytime, the entire tile reloads. But i want to show the users the selected menu item. Since the tiles reloads, i am not ...
0
votes
1answer
212 views

struts2 MessageResources in tiles

I'm trying unsuccessfully to use a struts2 message resource in a tiles 2.1.4 expression. For example the following resource is available in the jsp... <s:text ...
2
votes
2answers
477 views

How to check existance of tiles attribute berfore inserting it into the page

I am using tiles in struts2 application. While defining base layout I have defined an attribute "scriptFile". <definition name="baseLayout" template="/application/base-layout.jsp" > ... ...
2
votes
1answer
706 views

Pass global variables to Spring + Apache Tiles

I'm currently running a working Spring + Apache Tiles webapp. I need to show some example code to explain my intention. Apache Tiles Configuration: <?xml version="1.0" encoding="UTF-8" ?> ...
0
votes
1answer
231 views

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 ...
0
votes
0answers
302 views

WebLogic and rendering of nested Tiles - static content is ignored

We have a large web application, some of which uses Apache Tiles which, in places, are heavily nested. On all web application containers tested (Tomcat, JBoss, JonAs and I think WebSphere) there have ...
1
vote
1answer
965 views

Migrating from Sitemesh to Apache Tiles

I'm developing my own project using spring-mvc and spring-webflow. After reading some articles about spring webflow and ajax, I understood the better option is the use of Apache Tiles for rendering ...
1
vote
1answer
920 views

Ajax REST call to web app with spring 3 and Tiles 2

I have a webapp which is built using spring 3 and tiles 2 (not RESTful). I am using UrlBasedViewResolver to display views my application-servlet.xml <beans ...
2
votes
1answer
322 views

Dynamically composing pages using tiles

I'm a new tiles user and love it so far. But I face a problem now and I'm not sure that tiles is the right tool in my hand to achieve my aims. What I would like to do is to create a general ...
0
votes
1answer
528 views

How do I change the order of tile evaluation in Apache Tiles?

I have a problem where the nested templates are being evaluated before the parent template. Due to the ordering issue, this is causing issues with a tag library that insists nesting. template.jsp ...
1
vote
1answer
645 views

Tiles framework low performance

I built a Spring MVC web app with TilesViewResolver, but the performance is poor, very slow. In a benchmark Tiles is sevent times slower than JSP. Is there any way to improve this?
3
votes
1answer
2k views

Apache Tiles 2.1 - How to prevent inherited list attributes from getting duplicated?

I'm working on a project using Apache Tiles 2.1. I am running into an issue where extending templates with list attributes is creating duplicates of those list items... one set of duplicates for ...