|
@@ -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
|