Commit af205a05 by “zcwang”

add: 依赖缺失

parent 325b86be
...@@ -6,12 +6,17 @@ import org.springframework.boot.SpringApplication; ...@@ -6,12 +6,17 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.FilterType;
import tk.mybatis.spring.annotation.MapperScan; import tk.mybatis.spring.annotation.MapperScan;
/** /**
* 项目启动类 * 项目启动类
*/ */
@ComponentScan(basePackages = {"com.netease.mail.yanxuan.change","com.netease.mail.yanxuan.qc"}) @ComponentScan(basePackages = {"com.netease.mail.yanxuan.change","com.netease.mail.yanxuan.qc"})
@ComponentScan(basePackages = { "com.netease.yanxuan" }, excludeFilters = {
@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = {
com.netease.yanxuan.qc.parent.aop.RemoteAspect.class }) })
@MapperScan("com.netease.mail.yanxuan.change.dal.mapper") @MapperScan("com.netease.mail.yanxuan.change.dal.mapper")
@EnableApolloConfig @EnableApolloConfig
@EnableMissaClients(basePackages = "com.netease.mail.yanxuan.change") @EnableMissaClients(basePackages = "com.netease.mail.yanxuan.change")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment