| Author |
Tiles in JSF
|
Maya Pillai
Ranch Hand
Joined: Jul 17, 2008
Posts: 60
|
|
I am trying to configure tiles in myJSF application.
tiles-def.xml
index.jsp
Template.jsp.
Template1.jsp
while running the code i am getting an exception.
[Exception in:/pages/Template1.jsf] Cannot forward after response has been committed
Please help.
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14460
|
|
While it's possible to use Tiles with JSF, I've never had a whole lot of satisfaction in attempting to use Tiles even in Struts. A better solution is to use Facelets, since Facelets functionality was merged into JSF for JSF2.
The actual error you're getting is thrown when you attempt to forward after the page has started rendering. I think Tiles may be partly to blame for that, since the very reason it frustrated me was its "inside-out" organization of resources.
That's not to say you can't forward from a Tiles app, but you do have to do the forwarding before (or instead of) rendering the tiles.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
 |
|
|
subject: Tiles in JSF
|
|
|