Skip to content

Instantly share code, notes, and snippets.

View fernandospr's full-sized avatar

Fernando Sproviero fernandospr

  • Ciudad de Buenos Aires, Argentina
View GitHub Profile
@fernandospr
fernandospr / gist:5bbf24a994975aec72d0
Last active August 29, 2015 14:18
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>