美文网首页springboot
springboot修改注解扫描范围

springboot修改注解扫描范围

作者: 大韭哥 | 来源:发表于2019-01-03 18:02 被阅读0次

    版本:springboot2.1.1

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

    如果要修改扫描范围,只需在xxxApplication.java添加注解

    @ComponentScan(basePackages={"com.yuntsg.test1","com.yuntsg.test2"})
    
    @ComponentScan(basePackages={"com.yuntsg"})
    @SpringBootApplication
    public class xxxApplication {
        public static void main(String[] args) {
        SpringApplication.run(xxxApplication.class, args);
        }
    }
    

    相关文章

      网友评论

        本文标题:springboot修改注解扫描范围

        本文链接:https://www.haomeiwen.com/subject/zqjqrqtx.html