1

I had hours in Google uselessly, looking for a link to download the following .tld, necessary to integrate Tiles in a Struts project : struts-bean.tld struts-html.tld struts-logic.tld struts-tiles.tld Thank you a lot, in advance :)

2 Answers2

1

The tag libs you mention are for Struts 1, but you have tagged this question as being for Struts 2. For Struts 2, you can just add the struts2-tiles-plugin to your web app.

rees
  • 1,566
  • 1
  • 12
  • 19
  • Thank you. You are right, no tld files are needed for Struts2. You all are awsome, guys! –  Aug 08 '12 at 21:51
0

Struts2 tiles layout Download

Here is an example , you can download the zip file and customize it accordingly. And the .tld files (i.e. tag library descriptors) for struts2 are kept in the following jar file.

struts2-core-2.1.8.1.jar

Using the above link you can download the jar as well.

Prateek
  • 3,923
  • 6
  • 41
  • 79
  • 1
    version 2.1.8.1 is old and should not be used. Make sure to use the latest version, and at least no older than 2.3.1.2 due to critical fixes and improvements. – rees Jul 09 '12 at 12:35
  • Thanks for info rees. Use struts-core-2.3.1.2 jar instead. Rest you download, from the mentioned link. – Prateek Jul 09 '12 at 12:43
  • Thank you guys for this useful information and for the link :) –  Aug 08 '12 at 21:50