I am doing spring mvc application in this when i logout from the application if i click browser back button its getting to the previous page of the application I have to restrict this and I tried this in my *.xml file
<interceptors>
<beans:bean id="webContentInterceptor"
class="org.springframework.web.servlet.mvc.WebContentInterceptor">
<beans:property name="cacheSeconds" value="0" />
<beans:property name="useExpiresHeader" value="true" />
<beans:property name="useCacheControlHeader" value="true" />
<beans:property name="useCacheControlNoStore" value="true" />
</beans:bean>
</interceptors>
this is working only with in the application if I logout again if I click browser back button going to the previous page.
I tried with Javascript and Jquery examples but not working in my spring mvc application. can any one please suggest me in this regard and approach to follow.