码迷,mamicode.com
首页 > 编程语言 > 详细

springboot指定注解扫描范围

时间:2019-08-08 13:04:19      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:span   div   void   默认   tap   情况下   public   需要   boot   

springboot注解扫描范围是由@ComponentScan指定的;
默认情况下为启动程序所在目录及其子包;

如果需要指定扫描路径,在启动程序中添加修改

@ComponentScan(basePackages={"org.jstudio.a","org.jstudio.b"})
@SpringBootApplication
public class xxxApplication {
    public static void main(String[] args) {
    SpringApplication.run(xxxApplication.class, args);
    }
}

 

springboot指定注解扫描范围

标签:span   div   void   默认   tap   情况下   public   需要   boot   

原文地址:https://www.cnblogs.com/zsg88/p/11320239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!