Commit 44191240e026ffd7cfe7e8603a922f9deae1bc80

Authored by zhaowg3
1 parent c8e8941e

添加缺少的import

src/main/java/com/zteits/irain/portal/ParkPortalApplication.java
... ... @@ -5,10 +5,15 @@ import org.springframework.boot.SpringApplication;
5 5 import org.springframework.boot.autoconfigure.SpringBootApplication;
6 6 import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;
7 7 import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;
  8 +import org.springframework.boot.web.servlet.ServletComponentScan;
8 9 import org.springframework.context.annotation.Bean;
9 10 import org.springframework.context.annotation.ComponentScan;
10 11 import org.springframework.context.annotation.EnableAspectJAutoProxy;
  12 +import org.springframework.context.annotation.FilterType;
11 13 import org.springframework.context.annotation.ImportResource;
  14 +import org.springframework.context.annotation.ComponentScan.Filter;
  15 +
  16 +import com.clouds.common.web.WebMvcConfigurer;
12 17  
13 18 /**
14 19 *
... ...