2023-05-16 22:44:53 +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;
|
2023-07-04 21:45:35 +01:00
|
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
2023-05-16 22:44:53 +01:00
|
|
|
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);
|
|
|
|
}
|
2023-07-04 21:45:35 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
|
|
// Handler for external static resources
|
|
|
|
registry.addResourceHandler("/**")
|
|
|
|
.addResourceLocations("file:customFiles/static/", "classpath:/static/")
|
|
|
|
.setCachePeriod(0); // Optional: disable caching
|
|
|
|
}
|
2023-05-16 22:44:53 +01:00
|
|
|
}
|