Tagged Questions
-2
votes
1answer
182 views
java.lang.ClassNotFoundException: org.apache.struts2.tiles.StrutsTilesListener
15:06:38,636 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC00001: Failed to start service jboss.deployment.unit."myapp.war".POST_MODULE: org.jboss.msc.service.StartException in ...
0
votes
1answer
56 views
apache tiles 3 - how to access session scope
I would like to use a ViewPreparer to modify the layout menu, depending on session scope. I don't know how to access the session scope. Inside the view preparer, I implement such method:
public void ...
0
votes
0answers
143 views
apache tiles put-list-attribute XML error
I've got such definitions in my tiles.xml:
<definition name="t.base" template="/WEB-INF/tiles/base.jsp">
<put-attribute name="title" value="SomeTitle" />
<put-attribute ...
1
vote
1answer
73 views
how to assign a role in apache tiles
Apache Tiles gives us a possibility to add a definition or an attribute basing on role. What exactly is this role and how can I set a role for the current user?
2
votes
0answers
53 views
Tiles Decoration Filter example
I'm trying to use Decoration Filter in Tiles, but cannot clearly understand how does it work.
The filter will intercept all requests to the indicated url pattern store the initial request path as ...
0
votes
0answers
36 views
apache tiles: getAsString vs insertDefinition
I can't see clear difference between those two tags. I've seen the docs and definitions for those tags are similar as well. Both tags just render attribute value. Can anyone eplain what's the ...
1
vote
0answers
74 views
apache tiles: get view name inside ViewPreparer
I'm developing an app with tiles and I want to implement a ViewPreparer that constructs menu specific for page that is just being displayed. I can't see such thing in the api. Does anyone know how to ...
0
votes
0answers
69 views
apache tiles template inside another template
I've got a "t.base" view definition for all pages:
<definition name="t.base" template="/WEB-INF/tiles/base.jsp">
<put-attribute name="title" value="SomeTitle"/>
</definition>
...
1
vote
1answer
182 views
apache tiles - how to override an attribute from child template
The question is how can I override an attribute in tiles child template.
I've got two templates: base and child. This is a part of base layout - HTML head:
<title>
...
0
votes
2answers
115 views
apache tiles source directory - does it have to be WEB-INF?
I'm trying to use Apache Tiles (version 3) in a spring project. As far as I can see, all tiles-files should be placed somewhere under WEB-INF directory. I'm not sure about this, this is just my ...
2
votes
2answers
408 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
147 views
Struts2 with Velocity and Tiles
I am developing a web application on Struts2. For front end development I have decided to use Velocity with Tiles. I have found Velocity and Tiles plugins for Struts2 but haven't found any related ...
0
votes
2answers
276 views
How to submit form in struts2?
I have following code in tiles.xml
<definition name="m_st" extends="mmain">
<put-attribute name="body" value="reports/st/list.jsp"/>
</definition>
And following code in ...
0
votes
1answer
149 views
Coexisting JSF and JSP
I have a java web project in which I use JSP, now I have to use jsf because I need a functionality wich cannot be provided by jsp only. The problem that I have is that I can't cohexist the two ...
5
votes
1answer
2k views
JSP, Sitemesh and Tiles hardcore - any alternatives? [closed]
Tiles and Sitemesh look quite popular but this stuff is really old and look terrible compared to current awesome stuff from e.g. Ruby (ERB) or PHP (Open Power Template). These days template engines ...
0
votes
0answers
41 views
Tiles system requirements
I want use the tiles framework in my project, but the web container from the company that I am working for is an older version(SapNetwear).
I do not know precisely the JSP specification and the JVM ...
9
votes
3answers
7k views
How to get the original request url from a servlet/jsp after multiple servlet forwards
I am working on a cruise booking app using struts/tiles that uses multiple internal servlet/jsp forwards to reach the right jsp for display. But, once you reach the final jsp that is used to render ...
1
vote
1answer
576 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"
...
5
votes
2answers
5k views
Sitemesh or Tiles [closed]
Working on the design of a web-application and since it will be a large application so can not reply on jsp include feature so have to use some other solution and for that we came up with Tiles and ...
0
votes
2answers
190 views
Tiles won't parse Struts tags
I'm tried using tiles but it seems that it's not parsing the Struts tags, It outputs them directly e.g. instead of ...
What seems to be the problem?
0
votes
1answer
418 views
Do I have to include libs in every tile within Apache Tiles?
I am using Tiles within my web-application. I have a standard-layout (standard.jsp) within the tiles are used. On top of the standard.jsp are a lot of includes, concerning tag-libraries and such.
...
