mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 16:05:09 +00:00
32 lines
1.1 KiB
Java
32 lines
1.1 KiB
Java
package stirling.software.SPDF.config;
|
|
|
|
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;
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
import stirling.software.common.configuration.InstallationPathConfig;
|
|
|
|
@Configuration
|
|
@RequiredArgsConstructor
|
|
public class WebMvcConfig implements WebMvcConfigurer {
|
|
|
|
private final EndpointInterceptor endpointInterceptor;
|
|
|
|
@Override
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
registry.addInterceptor(endpointInterceptor);
|
|
}
|
|
|
|
@Override
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
// Handler for external static resources
|
|
registry.addResourceHandler("/**")
|
|
.addResourceLocations(
|
|
"file:" + InstallationPathConfig.getStaticPath(), "classpath:/static/");
|
|
// .setCachePeriod(0); // Optional: disable caching
|
|
}
|
|
}
|