Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 observation: when I set war/WEB-INF/tiles/*.jsp it's ok, when I set war/tiles/*.jsp (and change my tiles-defs.xml to point new directory) I get

org.apache.tiles.request.render.CannotRenderException: ServletException including path '/tiles/basic.jsp'.

All tutorials I found on the web show that tiles directory is under WEB-INF\. Can someone make clear whether tiles directory have to be under WEB-INF (or maybe if other jsp files have to be there as well)?

share|improve this question

2 Answers

up vote 2 down vote accepted

No it doesn't have to be in WEB-INF, but it is actually the recommended way, moreover this is absolutely not Tiles specific, this is a general JSP/Java EE recommendation. (because of security reasons, the WEB-INF folder is not accessible directly)

E.g. here is a sample here where jsps our outside WEB-INF.

share|improve this answer
Thank you for important notes on WEB-INF directory. Anyway, still I can't explain why tiles fail to render the page, if it doesn't have to be in WEB-INF... – tkoomzaaskz Feb 14 at 7:58
yes that is another question :) can you post your config files? (web.xml, tiles-defs.xml) – abalogh Feb 14 at 8:14
Ok, I solved the other problem. It was just missing .jar files. I thought that including as little as possible jar files is a good idea (not to make the .war to heavy), but it eats too much developer time to fix missing includes. Experience rules ;). Anyway thanks for you valuable answer! – tkoomzaaskz Feb 14 at 8:21
No problem, glad you got it working! – abalogh Feb 14 at 8:24

As you have mentioned above you are using Tiles-3 with spring. But I tried a lot Tiles-3 with spring but could not get success then I read from a forum that Tiles-3 is not supported by spring so I downgraded to Tiles-2. Can you explain a little bit how you integrated Tiles-3 with Spring? It will be great help for us...

Thanks

share|improve this answer
All I achieved until now is available on github repo: github.com/tkoomzaaskz/lyricsBase. Spring supports Tiles-3, I'm sure about it. But Tiles-3 seems kinda work-in-progress. – tkoomzaaskz Mar 16 at 18:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.