Brian Clozel преди 11 години
родител
ревизия
75f9be87c3
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4 1
      spring/src/main/java/com/techempower/spring/SampleApplication.java

+ 4 - 1
spring/src/main/java/com/techempower/spring/SampleApplication.java

@@ -1,12 +1,15 @@
 package com.techempower.spring;
 
 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
+import org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration;
 import org.springframework.boot.builder.SpringApplicationBuilder;
 import org.springframework.boot.web.SpringBootServletInitializer;
 import org.springframework.context.annotation.ComponentScan;
+import org.springframework.web.servlet.config.annotation.EnableWebMvc;
 
 @ComponentScan
-@EnableAutoConfiguration
+@EnableAutoConfiguration(exclude = {WebMvcAutoConfiguration.class})
+@EnableWebMvc
 public class SampleApplication extends SpringBootServletInitializer {
 
 	@Override