mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-07 20:46:10 +00:00
12 lines
399 B
Plaintext
12 lines
399 B
Plaintext
package {{configPackage}};
|
|
|
|
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
|
|
|
|
public class WebMvcConfiguration extends WebMvcConfigurationSupport {
|
|
@Override
|
|
public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
|
|
configurer.enable();
|
|
}
|
|
}
|