Tagged Questions
4
votes
3answers
123 views
Apache Tiles alternatives
I am writing a Spring MVC application and looking for a way to do layouts in views. The only option that i see is Apache Tiles, which i have used before and know how painful it is to maintain its ...
4
votes
3answers
3k views
How do I create a Spring 3 + Tiles 2 webapp using REST-ful URLs?
I'm having a heck of a time resolving URLs with Spring 3.0 MVC. I'm just building a HelloWorld to try out how to build a RESTful webapp in Spring, nothing theoretically complicated.
All of the ...
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 ...
3
votes
2answers
661 views
Using Velocity with Tiles and Spring
I'm presently using Spring 3.0.4 and Apache Tiles 2.2.2 in my web app. I'd like to replace JSP with Apache Velocity 1.6.3 but I'm somewhat confused on how to do this. Ultimately, I'd like to be able ...
2
votes
1answer
2k views
Apache Tiles 2.1.4 with CSS
I am using Apache Tiles 2.1.4 with Spring MVC 3. I have managed to configure these together and everything works fine. My next step is to add CSS and this is where I am having an issue - this is most ...
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
2answers
93 views
Spring Webflow | Different validate method per transition
I currently have a Spring Webflow application that uses Webflow + Ajax.
I have a view-state called "A" that has several transitions.
<view-state id="A" model="myClass">
<transition ...
1
vote
1answer
842 views
Calling Controller from Tiles Template using Spring 3
I just set up Apache Tiles 2 in my Spring MVC 3 application.
I created my template :
<definition name="baseLayout" template="/WEB-INF/jsp/baseLayout.jsp">
<put-attribute name="title" ...
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 ???
0
votes
0answers
21 views
How can I switch TilesConfigurer at runtime?
I have a Spring webapp that uses Apache Tiles to piece together various views.
I currently define a TilesConfigurer in my spring-servlet.xml like
<bean id="tilesConfigurer" ...
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
1answer
181 views
mvc:view-controller causes PageNotFound in Spring Tiles2
I have a webapp based on Spring 3.0.6 which works fine on Tomcat 7.0.
The web.xml defines the dispatcher as following:
<servlet>
<servlet-name>dispatcher</servlet-name>
...
0
votes
1answer
312 views
Tiles Config bean throws exception: TestNG+Spring 3+Tiles2
I'm trying to run a TestNG+Spring+JPA+Hibernate 'Hello World' test. The execution results in a NullPointerException, the tiles configurer bean fails.
The exception:
2011-08-20 18:12:18,547 [main] ...
0
votes
1answer
475 views
Tiles 2 + Spring: Attribute not found
I'm working on integrating Tiles 2 with Spring, but have a problem. I have a simple tiles.jsp page. Rendering tiles view produce error: org.apache.tiles.template.NoSuchAttributeException: Attribute ...
0
votes
1answer
386 views
Spring MVC 3 and Apache Tiles 2, but no controller
I am trying to get Spring MVC 3 and Apache Tiles 2 to play nice together. I can get simple pages to display and those pages have been built with Tiles templates, but for the life of me I cannot get my ...
0
votes
1answer
341 views
Tiles 2 Access Variable in Template
I am using the Spring MVC framework with Apache Tiles 2. I want to be able to have multiple controllers all use the same view (different logic, some basic presentation). I can do that easily. What I ...
0
votes
1answer
1k views
Apache Tiles 2 + Spring MVC 3 using multiple sets of view definitions
This is a complex question, so please bear with me through the long explanation.
Current scenario
We are using Spring MVC 3.0.5 with Apache Tiles 2.2. Currently our Spring-based tiles configuration ...
0
votes
3answers
610 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
1answer
443 views
passing data in querystring when using tiles
I am using tiles2 and spring in my project. When i am redirecting from spring controller to a jsp(the jsp page is mapped in tiles.xml file) page using query string like:
return ...
0
votes
2answers
440 views
Tiles 2, mapping of JSP
I use Tiles 2 with Spring 3.05. I want to map jsp files to controller, e.g.
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
...
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
2k views
Why am I not getting Spring Security Login Error Messages?
Using Spring Security 3 along with Struts 2 and Tiles 2, I have a login page that appears when it is supposed to and performs the login as expected -- however when I enter bad user credentials I am ...
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 ...
0
votes
1answer
356 views
Best way to set HTML head title in a Spring+Tiles2 application?
I have a usability problem in my Spring webapp which uses Tiles as the view technology.
At the moment all of the pages display the same HEAD_TITLE and the PAGE_TITLE is page specific:
<html>
...