You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often I have a message in my logs : log.txt
I don't know when this exception occurs but then it happens my table (based on Dandelion Datatables) has empty content.
Maybe it's related on my static resources cache settings?
@OverridepublicvoidaddResourceHandlers(ResourceHandlerRegistryregistry) {
IntegercachePeriod = this.resourceProperties.getCachePeriod();
if (!registry.hasMappingForPattern("/webjars/**")) {
registry.addResourceHandler("/webjars/**").addResourceLocations(
"classpath:/META-INF/resources/webjars/")
.setCachePeriod(cachePeriod);
}
if (!registry.hasMappingForPattern("/static/**")) {
registry.addResourceHandler("/static/**").addResourceLocations(
"/static/")
.setCachePeriod(cachePeriod);
}
if (!registry.hasMappingForPattern("/dandelion/**")) {
registry.addResourceHandler("/dandelion/**").addResourceLocations(
"classpath:/META-INF/resources/dandelion/")
.setCachePeriod(cachePeriod);
}
}
I'm using Spring Boot 1.3.1, Dandelion Datatables 1.1.1, Thymeleaf 2.1.2. Application deployed on Tomcat 8.0.28.
The text was updated successfully, but these errors were encountered:
Often I have a message in my logs :
log.txt
I don't know when this exception occurs but then it happens my table (based on Dandelion Datatables) has empty content.
Maybe it's related on my static resources cache settings?
I'm using Spring Boot 1.3.1, Dandelion Datatables 1.1.1, Thymeleaf 2.1.2. Application deployed on Tomcat 8.0.28.
The text was updated successfully, but these errors were encountered: