2
votes
0answers
55 views
+50

Tile does not work properly with OGNL expressions

I am trying to use OGNL in my tile but it considers the expression as a string ( whatever I use it counts as a string). How should I change it in a way to count the expression as name of a page not ...
0
votes
0answers
16 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> ...
1
vote
1answer
91 views

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 ...
0
votes
1answer
24 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
38 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"> ...
2
votes
1answer
72 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
206 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 ...
4
votes
3answers
262 views

How to use Tiles2 with Struts 1

Is it possible to use Tiles2 with Struts 1? I've followed the instruction available at the migration guide http://tiles.apache.org/migration/index.html But when I try to access my actions, I get ...
0
votes
0answers
23 views

Determining the type of a instance at the Apache Tiles definition level

I have decided to go for JPA entity inheritance in the project I am currently working on. I use Apache Tiles. Thus, I have an abstract Member entity class that is subclassed by two other entities, ...
2
votes
1answer
681 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
0answers
77 views

Spring upgrade from 2.0.1 to 3.0.6 - Struts support

The application I am working on was using spring 2.0.1 along with struts-tiles 1.3. And we have a bean activated this way: <bean id="viewResolver" ...
0
votes
1answer
445 views

Nested templates with tiles

I want to have some nested templates with tiles, but without any luck for the moment. My main template : [...] <div id=body><tiles:insertAttribute name="body"/></div> [...] My ...
0
votes
1answer
217 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 ...
1
vote
1answer
937 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 ...
0
votes
0answers
494 views

Tiles: Accessing Spring beans in JSP

When using InternalResourceViewResolver I can specify exposeContextBeansAsAttributes property: <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> ...
0
votes
2answers
114 views

How can I tell if a certain view (tile) has been defined in a Controller?

Spring 3.0.5 + Tiles Inside my controller I'm creating a new ModelAndView but a situation has come up where one company wants their own view. Once this happens I can see this growing where other's ...
1
vote
1answer
189 views

Question on Tiles Framework

This question is more from a UI perspective. While we can create or rather specify different types of layouts using the Tiles definition, my question is what should be the strategy to define these ...
0
votes
1answer
1k views

Spring MVC & Tiles integration

Firstly I know that Spring MVC has good integration with Tiles. But my problem is as below: I have configured my web.xml as <servlet> <description>Spring Dispatcher ...
1
vote
1answer
395 views

apache + tiles2 layout problem

I have the following tiles configuration file <tiles-definitions> <definition name="base" template="/includes/layout.jsp"> <put-attribute name="header" ...
1
vote
4answers
3k views

Setting page title dynamically with tiles2 and spring mvc

I've been asking myself this question for quite some time and I haven't found a nice solution for this on the web. So I am using Tiles2 and Spring MVC and I'd like to set the page title dynamically ...
1
vote
1answer
572 views

How to automate body import with Apache Tiles and Spring MVC

I have the following tiles-def.xml: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN" ...
0
votes
2answers
412 views

tiles2 definition not working with ControllerClassNameHandlerMapping

I'm using ControllerClassNameHandlerMapping to avoid explicitly mapping URLs to controllers, and so far it works fine. I have a link in index.jsp to welcome.html, which is properly mapped to ...
2
votes
3answers
5k views

UrlBasedViewResolver and Apache Tiles2 in Spring 3

I've got the following exception while trying to open the URL http://localhost:8080/app/clientes/agregar: javax.servlet.ServletException: Could not resolve view with name 'clientes/agregar' in ...
3
votes
3answers
2k views

Tiles 2 And No mapping found for HTTP request with URI - Spring-MVC

I want to use Spring-Tiles intergration. Here you can see how my app looks like. So my question is: why Spring-MVC dispatcher Servlet can not resolve my Target page ???
1
vote
1answer
2k views

sitemesh and tiles 2.1 integration with spring MVC

Is posible to integrate sitemesh and tiles 2.1 with spring mvc ? I want to composite the layout with tiles and then decorate with sitemesh. I was using tiles like that. <bean ...
2
votes
2answers
704 views

Enable Tiles devMode like Struts' devMode to reload tiles.xml with each request

Does Apache Tiles have a devMove like Struts that would reload the tiles.xml file with each request? If so, how can this be enabled?
5
votes
3answers
8k views

Integrating Spring Webflow 2 and Apache Tiles

I've recently started upgrading some applications to use Spring Webflow 2, and I want to make use of the new Ajax functionality that comes with Webflow 2. Can somebody please direct me to a tutorial ...
7
votes
1answer
3k views

Spring + Tiles2 + Freemarker - integrate via Freemarker Servlet or via Spring's FreeMarkerViewResolver?

I was strugling today trying to migrate from Freemarker to Tiles2 + Freemarker. My freemarker templates use macros that come from spring.ftl. If I provide a fremarker servlet in web.xml, my model ...