Skip to content

Instantly share code, notes, and snippets.

@fernandospr
Last active August 29, 2015 14:18
Show Gist options
  • Save fernandospr/5bbf24a994975aec72d0 to your computer and use it in GitHub Desktop.
Save fernandospr/5bbf24a994975aec72d0 to your computer and use it in GitHub Desktop.
Spring MVC no cache xml
<mvc:interceptors>
<bean id="webContentInterceptor" class="org.springframework.web.servlet.mvc.WebContentInterceptor">
<property name="cacheSeconds" value="0"/>
<property name="useExpiresHeader" value="true"/>
<property name="useCacheControlHeader" value="true"/>
<property name="useCacheControlNoStore" value="true"/>
</bean>
</mvc:interceptors>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment