2023-08-13 01:15:26 +01:00
|
|
|
package stirling.software.SPDF.config;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
|
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
|
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
public class WebMvcConfig implements WebMvcConfigurer {
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
private EndpointInterceptor endpointInterceptor;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
|
|
registry.addInterceptor(endpointInterceptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
|
|
// Handler for external static resources
|
|
|
|
registry.addResourceHandler("/**")
|
2023-08-14 21:41:42 +01:00
|
|
|
.addResourceLocations("file:customFiles/static/", "classpath:/static/");
|
|
|
|
//.setCachePeriod(0); // Optional: disable caching
|
2023-08-13 01:15:26 +01:00
|
|
|
}
|
|
|
|
}
|