Configuration

WebMvcConfigurerAdapter

@SpringBootApplication
public class DemoApplication extends WebMvcConfigurerAdapter {
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class);
    }
}

Last updated

Was this helpful?