springcloud项目中指定扫描路径
时间: 2024-01-18 08:47:27 浏览: 132
75-Spring Cloud Feign使用笔记1
在Spring Cloud项目中,可以通过在启动类上使用`@ComponentScan`注解来指定需要扫描的包路径。例如:
```java
@SpringBootApplication
@ComponentScan(basePackages = {"com.example.service", "com.example.controller"})
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
```
这里通过`@ComponentScan`注解指定了需要扫描的包路径为`com.example.service`和`com.example.controller`。这样,在启动应用时,Spring会自动扫描这两个包下的组件并注册为Bean。
阅读全文