SpringBoot之@ComponentScan和@SpringBootApplicat。。。
@SpringBootApplication=@Configuration+@EnableAutoConfiguration+@ComponentScan,其中扫描包的范围为启动类所在包和⼦包,不包括第三⽅的jar包。如果我们需要扫描通过maven依赖添加的jar,我们就要单独使⽤@ComponentScan注解扫描第三⽅包。
但是,如果@SpringBootApplication和@ComponentScan注解共存,那么@SpringBootApplication注解的扫描的作⽤将会失效,也就是说不能够扫描启动类所在包以及⼦包了
使⽤
@ComponentScans({
springcloud和springboot@ComponentScan("包名"),
@ComponentScan("com.immortal.springcloudapi")
})

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。