How to use sitemesh effectively in webapplication

1k Views Asked by At

I implement sitemesh in my java web application but when I click on the next page link that time header and footer again render to the body.

Is there any way to change only the body section of the page?

Like ajax to change boy content in sitemesh and how to implement so header and footer page not render every time.

I read this link http://java.dzone.com/news/ajaxified-body but not able to configure is there any special configuration

u can see twitter.com or facebook.com when user logs in u can see the header panel that can not reload or even reflect when u click on any link. so how this can be achieved? @jayesh

1

There are 1 best solutions below

6
On

If I understand correctly, you're clicking on a link that loads a part of the page using AJAX, and Sitemesh decorates that page, which you don't want.

If so, then the answer is in the question. Configure sitemesh so that it doesn't decorate this AJAX request (or all AJAX requests). You could for example make all the AJAX URLs use a common prefix (like ajax), and use the following rule:

<mapping path="/ajax*" exclude="true"/>

Or you could extend the Sitemesh filter, detect if the request is an AJAX request using the HTTP_X_REQUESTED_WITH request header, and only filter if it's not an ajax request.