报错原因:
- 引入gulimall-common的时候,gulimall-common中的oss依赖与renren-fast中的oss依赖冲突
处理方法:
- 排除renren-fast引入的gulimall-common依赖的oss即可
操作如下:
- 使用maven clean清除下项目
- 修改renren-fast的pom文件
- groupId替换成你项目组名
<dependency>
<groupId>com.cjy.gulimall</groupId>
<artifactId>gulimall-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alicloud-oss</artifactId>
</exclusion>
</exclusions>
</dependency>
提示
- 如果还是不能解决,请确定项目使用的spring-boot, spring-cloud版本是否兼容,谷粒商城后端很多的坑都是因为这个引起的
- 具体版本可以参考https://gitee.com/Chen__28/gulimall中的pom文件