犯错原因,虽然在pom里面加入了feign但是,有先后顺序,不然会报错

 

在pom文件添加依赖:

<!-- 注意事项:必须要导入该包 注意有先后顺序 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

相关文章:

  • 2021-08-21
  • 2021-11-18
  • 2021-05-24
  • 2021-04-10
  • 2021-10-26
  • 2021-12-02
  • 2022-01-05
猜你喜欢
  • 2021-08-11
  • 2022-12-23
  • 2022-01-10
  • 2021-10-06
  • 2021-12-27
  • 2021-11-01
  • 2021-07-26
相关资源
相似解决方案