1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-09-29 08:00:12 +02:00
Stirling-PDF/src/main/java/stirling/software/SPDF/config/WebMvcConfig.java

19 lines
599 B
Java
Raw Normal View History

2023-05-16 23:44:53 +02: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.WebMvcConfigurer;
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Autowired
private EndpointInterceptor endpointInterceptor;
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(endpointInterceptor);
}
}