Apache Tiles is a framework that allows authors to define HTML page fragments which can be assembled into a complete page at runtime.
2
votes
0answers
17 views
Spring MVC 3 & Tiles 2.2.2: A definition for every single page?
So I'm working on a project using Spring MVC 3 and we tried SiteMesh 2.4.2 as a templating mechanism but it ended up having conflicts with Spring so today I'm trying to replace SiteMesh with Tiles ...
0
votes
1answer
45 views
Specifying unique content for <head> section using apache tiles
I'm brand new to Tiles so this is probably a very easy question. I've created a web application using Java / Spring 3 / JSPs without the use of tiles and now I'm realizing my life would be much ...
1
vote
0answers
131 views
Spring 3 MVC - Model not displaying in JSP Page
On the surface, this question will sound a lot like questions that may have been asked previously on SOF but I tried those answers long ago and no luck.
(For example, this question spring 3 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>
...
0
votes
1answer
43 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
2answers
26 views
Spring one ModelAttribute in several Controller [duplicate]
I develop in Spring MVC + Apache Tiles + JSPX in my system.
I would like to put login form in every page. In the login process I would like to use @ModelAttribute("loginModel") LoginDTO
In Spring ...
0
votes
1answer
46 views
Does apache tiles refreshe all attributes each time?
Before using Apache tiles in my spring application, I want to confirm if apache tiles reloads all of layout attributes (such as Header, Menu, Body, footer) a new page is being loaded.
Can you ...
0
votes
1answer
45 views
Integrating Spring MVC Apache Tiles and Hibernate
I'm trying to integrate Spring MVC + Apache Tiles + Hibernate in Eclipse without Maven or STS environment
M- Hibernate
V- Apache Tiles
C- Spring MVC
1) Integrating Spring MVC + Apache Tiles was ...
0
votes
1answer
35 views
Apache Tiles 2.2.2 - propagating values
<tiles-definitions>
<definition name="home" template="/WEB-INF/views/home.jsp">
<put-attribute name="title" value="My App" />
<put-attribute ...
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 ...
0
votes
0answers
15 views
Apache Tiles add to definition Object
all!
How can I pass to my tile my Object. Ok. For example.
I have partial
jsp attrs...
<h1>Topic name: ${topic.name}</h1>
<p>text: ${topic.text}</p>
I can send data in my ...
3
votes
3answers
204 views
Spring roo, apache tiles display model attribute which was set in controller
I'm using Spring roo, and in one of the controllers I'm setting the model attribute "error" with a string as below:
//uiModel.addAttribute("error", "Duplicate name for Vendor");
...
1
vote
0answers
39 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
142 views
Apache Tiles 2.5 - Mark menu element as active
I'm using Spring MVC 3.1 and Tiles 2.
I have this Tile:
<ul class="nav">
<li class="active"><a href="/person">Person</a></li>
<li><a ...
0
votes
0answers
159 views
The TLD for the class org.apache.tiles.jsp.taglib.InsertAttributeTag specifies an invalid body-content (JSP) for a SimpleTag
I work with Java WEB-application: maven+spring_mvc+jsp+Apache-Tiles+eclipse+tomcat.
Apllication good startup and work from Eclipse (tomcat plugin, from files),
but when i build war-file and deploy ...
0
votes
1answer
165 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
73 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
70 views
What is the proper way to add Timer (for Task Schedule) in Spring 3+Tiles based web application?
I want to know if there is any proper way to add timer for task schedule (it will be count up) in Spring 3 + Tiles that works accurate. I have tried many options like jquery timer + (Client side) ...
1
vote
0answers
98 views
Apache Tiles - Unable to access beans in a custom ViewPreparer in Spring MVC
I am using Spring 3.2 with Apache Tiles. I generated a lot of my service classes using Roo. I am trying a simple procedure where I inject a variable into the jsp templates. That part works fine, but I ...
0
votes
1answer
112 views
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 ...
0
votes
1answer
190 views
Java,Spring 3.0.Apache Tiles 2.2 .2 ERROR :Could not resolve view with name 'addEmployee' in servlet with name 'HelloHibernate' type Exception report
I am trying to add Apache Tiles for CRUD application.Am getting Following Error
HTTP Status 500 - Could not resolve view with name 'addEmployee' in servlet with name 'HelloHibernate'
type ...
1
vote
1answer
444 views
Tiles 3 not Rendering List attributes
I've had no issues with tiles 3.0.1 up until trying to add list attributes to the definitions. There is no error and the definitions render correctly with the exception that the list attributes do not ...
1
vote
2answers
142 views
Apache Tiles and Spring Model Objects
The Header section (Apache Tiles Attribute) is shared by several views. It has a form that expects an Object when the page is loaded and complains if the Object is missing. At the moment I am placing ...
0
votes
1answer
212 views
Pros and Cons of Apache Tiles frame work
***Hi All,
Greetings for the day , i was just trying to find out pros and cons of using Apache tiles frame-work . Please let me know you valuable suggestions comments inputs regarding the same .
...
0
votes
1answer
195 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
0answers
441 views
send an Ajax request to Spring MVC
I have a problem with method handler return value in spring mvc
I have a grid and when user click on a row I have to show the details of row.
I don't want to send row Id in URL,when I use ...
0
votes
1answer
207 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 ...
0
votes
1answer
84 views
Configure view not found exception to show a 404
In our server we have a generic servlet mapping
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.do</url-pattern>
...
1
vote
1answer
250 views
In Apache Tiles 2, what's the difference between importAttribute and useAttribute?
As far as I know both tags import variables from tiles context to JSP so variables are made visible in the JSP. Please elaborate the difference between importAttribute and useAttribute.
0
votes
0answers
61 views
Spring & Tiles: Updating only a portion of a page
I'm using the Spring framework to build a web app. I have a search form that the user fills out and submits. My goal is to have the results appear right below the form without resetting the form's ...
0
votes
0answers
32 views
reuse apache tile template
I am using apache tiles 2.2.x now,and I meet some problems when I want to reuse the template.
I need two layout in my application then I have to create two templates.
template1: head-body-foot
...
0
votes
1answer
226 views
Spring MVC controller using @RequestParam with Apache tile 2
I am have the following configuration for my Spring MVC + Apache tile 2 project.
The Tile configuration
<definition name="test1" extends="mymain">
<put-attribute name="main">
...
2
votes
2answers
407 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" >
...
...
1
vote
0answers
732 views
AJAX Struts 1.x using tiles without jQuery
I faced with problem using tiles in struts 1/x.
For example I have next files
as tiles-def.xml
<definition name="list.page" ...
0
votes
1answer
636 views
spring mvc and ReloadableResourceBundleMessageSource
I am trying to build a spring MVC application (basically for self trainning reasons). This application has spring MVC, tiles, spring thems and jsp (sorry for numbering all but since i am not sure what ...
1
vote
0answers
124 views
Cannot start GAE with Tiles
I've been searching for a solution to this issue for the last couple days with no luck of finding a solution.
I have a GAE app within Eclipse, and I'm trying to use Tiles. I put the Tiles jars in the ...
0
votes
0answers
68 views
Restrict TilesViewResolver to a subset of tiles configurations
I don't know how to restrict the TilesViewResolver from a servlet to its own tiles configuration.
For example:
I have two servlets: Standard main servlet mapped to '/' and a admin servlet mapped to ...
0
votes
2answers
165 views
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, ...
0
votes
0answers
164 views
HTML5 Document type in jsp file produced an error
I run into a new error, which blows my mind. I can't get why that happend now, because a while a go any thing worked fine.
A short introduction:
I use the spring framework to build a web app. I use ...
0
votes
1answer
316 views
Getting a “The page isn't redirecting properly” in my Spring-MVC application
I'm trying to implement a Spring Security application. Also, I'm using tiles in my web-app.
Here is my Spring Security XML (spring-security.xml)
<http auto-config="true">
<intercept-url ...
0
votes
0answers
109 views
Spring 3 MVC multi module project not working
I tried to split my spring 3 mvc project into 4 modules (admin, core, rest and shop).
The admin, rest and shop module are spring mvc servlets which depends on the core module.
After I reconfigure all ...
0
votes
0answers
322 views
How to set selected item in menu. Using apache tiles + spring
I'm trying to set active menu item in apache tiles. My idea is to store selected item into cookies but i don't know if is it good practice. I can also make a new jsp for each view but i think its not ...
0
votes
1answer
733 views
Spring mvc 3 with tiles 2 gives 400 bad request
I'm trying to add Apache Tiles to a simple Spring MVC webapp I'm playing with and I can't seem to get it to work (it worked without Tiles). Any request I make gives back 400 bad request, nothing ...
2
votes
1answer
683 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
433 views
Rss feeds and apache tiles with Spring MVC
I;m trying to create RSS feeds for my web site. I follow the tutorial from mkyong (http://www.mkyong.com/spring-mvc/spring-3-mvc-and-rss-feed-example/) which was quite useful. According to this ...
0
votes
0answers
246 views
Template (header-footer) for spring mvc (options to sitemesh and apache tiles)
I am new to web design and would like to apologies if I am asking a question repeated many times. I couldn't find an answer online so here I am looking for help.
My task: create a website with ...
1
vote
2answers
138 views
Reloading JSP Changes in Eclipse/STS
I'm just getting into GAE and I'm using STS (derivative of Eclipse). I'm currently getting a project set up to use Spring and Apache Tiles under GAE. I've got it mostly configured properly and it ...
0
votes
0answers
775 views
Integrating Spring MVC , Jquery , Ajax and Tiles
I'm trying to implement an ajax functionality into my weapp, I'm using Spring MVC and Tiles, for Ajax call I'm using jquery.
Everything works fine except ajax functionality
The related code are ...
0
votes
1answer
221 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
281 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 ...