Tagged Questions

7
votes
2answers
821 views

Struts2 with Tiles 2.1 or 2.2

there doesn't seem to be a simple way to use Tiles 2.1 or 2.2 with Struts2 with the existing struts2-tiles plugin. I need to use the tiles wildcards functionality in my project where the tiles.xml ...
4
votes
1answer
360 views

Why Tiles REGEXP wildcard definition cause endless jsp including error

I use tiles 2.2.2 with Struts2 2.2.3, since Struts2-Tiles plugin is quite old, its implementation uses many Tiles deprecated API, and I want to try REGEXP wildcard, so I implement my own listener ...
3
votes
0answers
869 views

Passing OGNL expression from Tiles attribute to <s:iterator> (Struts2)

I am trying to pass an OGNL expression from Tiles framework (2.0.4) to the value attribute of <s:iterator> tag like this: tiles.xml <definition name="test" template="/test.jsp"> ...
3
votes
2answers
2k views

struts 2, tiles 2 dynamic title

I am using tiles 2.0.6 as my template framework together with struts 2.1.6. I am writing a simple cms page and want to let the user to define the title of each html page. I have a title definition ...
2
votes
1answer
288 views

Namespace problem in Struts2 when using Apache Tiles

I have a simple problem when I come to Struts2. I use tiles plugin in my Struts2 project. As all of us know, tiles are used for making templates. We can give namespace for our package in struts.xml, ...
1
vote
1answer
26 views

multiple tiles-def xml files

I'm using Struts 2.2.1 and tiles 2.1.4. Wanted to know if there is a way to have multiple tiles-def xml files as my tiles-def xml file is becoming really big.
1
vote
1answer
261 views

Struts2 tiles How to set attribute values in dynamically…

In tiles.xml set attribute values in static <tiles-definitions> <definition name="baseLayout" template="/site/layout.jsp" > <put-attribute name="body" value="/index.jsp"/> ...
1
vote
1answer
667 views

struts 2 tiles NoSuchDefinitionException

I am getting this exception when using struts 2 with tiles org.apache.tiles.definition.NoSuchDefinitionException: /index.jsp //tiles.xml <tiles-definitions> <definition name="baseLayout" ...
1
vote
1answer
95 views

Tiles2 group all the scripts inside a ¿definition?

I'm using struts2+tiles2, and I would like to do the following. I have a baseLayout, where I define my menu, body, etc like this: <tiles:insertAttribute name="menu" /> <tiles:insertAttribute ...
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?
1
vote
3answers
2k views

Nesting Apache Tiles Template

So I found this: http://tiles.apache.org/framework/tutorial/advanced/nesting-extending.html Here is the example: <definition name="myapp.homepage" template="/layouts/classic.jsp"> ...
0
votes
0answers
20 views

Velocity directives for tiles2

I am working on a web application with Struts2 and Velocity. I am now trying to introduce Tiles2. Following a tutorial for introducing Tiles2 to a JSP based project I learned I can use ...
0
votes
0answers
24 views

How to integrate Tiles 2.0 into a Vanilla Web Application

I am trying to integrate Tiles 2.0 into a vanilla web application that is built solely on Servlets. I've found many resources that show how to integrate Tiles with other Frameworks like Struts2 or ...
0
votes
1answer
463 views

Struts2, How to define @Result type parameter as tiles result

i am having trouble defining 'type' parameter of @Result annotation here is my action annotation: @Action(value="login", results=@Result(name="success",location="index.page", type="tiles" )) ...
0
votes
1answer
97 views

Struts Tiles, how to handle this situation correctly?

i just started to learn struts(+spring) MVC, and I could use some explanation of this situation : i am using Struts Tiles for my presentation layer and i want to display some data from database in ...
0
votes
1answer
160 views

passing values from tiles2 definition to jsp file in struts2

I am using tiles 2 with struts2. My tiles definition look like this:- <definition name="store-tiles" extends="baseLayout"> <put-attribute name="title" value="test" ...
0
votes
2answers
227 views

accessing form data in one jsp from another jsp

I am using Struts 2 and Tiles to develop an application. I have 2 JSP files being loaded into 2 separate cells of a table (Tiles concept). The first JSP has links (created using <s:url/> tag). ...
0
votes
0answers
69 views

struts2 fileupload possible error with tiles

I've use in my webapp the struts2+tiles. When the page submit the fileupload with form settings correctly and work fine. But, i've in some situations throw business exception. eg. Extension of the ...
0
votes
3answers
284 views

Multiple result types in Struts2?

I have a Struts2 application where I using Tiles. How can I get multiple result types in action-mappings? because I need to set de output as JSON data, and Tiles simultaneous. I have tried: ...
0
votes
1answer
460 views

Tiles, Struts 2, chained actions, and passing through put-attribute values

I'm writing a search engine to explore multiple search algorithms. The web portion floats on Struts 2.1.6 and Tiles 2.2.2. It's currently a complete mess, so below I've factored out a simplified ...
0
votes
1answer
908 views

struts2+tiles2 java.lang.ClassNotFoundException: org.apache.struts.taglib.bean.CookieTei

i am receiving error: org.apache.tiles.impl.CannotRenderException: ServletException including path '/layout/MainLayout.jsp'. ...
0
votes
1answer
676 views

Tiles2 Struts Switch Locale

I am newbee to struts2 and tiles2, I am having an application where i m using struts2 as mvc framework and tiles2 as a view component. In my application I am using 2 languages English and Marathi the ...
0
votes
3answers
776 views

Tiles2 error with cascade attribute in put-attribute tag

I just don't know why i get this error: 2010-10-28 16:32:29,925 ERROR [ache.commons.digester.Digester.error :1635] - Parse Error at line 45 column 56: Attribute "cascade" must be declared ...
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
655 views

How can I make title dynamically?

I'm developing BBS in struts2 and tiles(2) framework. I want to push a value in ActionSupport class and pop the value in layout.jsp of tiles. but i just keep failing to access to the value. I will ...
0
votes
2answers
2k views

Rendering complete page and not “progressively” (using struts 2 / tiles)

Is there a way to get struts 2 (using tiles) to build the whole page before sending it to the browser? I don't want the page to be build "progressively" in the browser one part at a time. The main ...