Tagged Questions

4
votes
3answers
6k 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 ...
2
votes
0answers
2k 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 ...
1
vote
1answer
56 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 ...
1
vote
1answer
188 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
3answers
3k 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 ...
1
vote
3answers
1k 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
2answers
403 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?
0
votes
2answers
73 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 ...
0
votes
0answers
66 views

insertDefinitions in JSP doesn't overwrite original tile

Hey I pretty new to the whole tiles concept and have a problem. Will try to explain as good as I can. In my tiles .xml file I have: <definition name="/article/startDateAndPrioTeaserList.do" ...
0
votes
1answer
334 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 ...
0
votes
3answers
605 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 ...
0
votes
0answers
253 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
211 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 ...
0
votes
1answer
1k 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 ...