How to scan multiple paths using the @ComponentScan annotation?

前端 未结 8 966
执笔经年
执笔经年 2020-11-29 17:38

I\'m using Spring 3.1 and bootstrapping an application using the @Configuration and @ComponentScan attributes.

The actual start is done wit

相关标签:
8条回答
  • 2020-11-29 18:03

    make sure you have added this dependency in your pom.xml

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    
    0 讨论(0)
  • 2020-11-29 18:07

    I use:

    @ComponentScan(basePackages = {"com.package1","com.package2","com.package3", "com.packagen"})
    
    0 讨论(0)
提交回复
热议问题