完美解决导入aliyun-oss-spring-boot-starter导入依赖报错
Posted 孟挽周
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了完美解决导入aliyun-oss-spring-boot-starter导入依赖报错相关的知识,希望对你有一定的参考价值。
根据官网导入阿里云封装好的
aliyun-oss-spring-boot-starter
时报错
解决方法:在
pom.xml
文件中的<dependencyManagement>
(版本控制) 中,加入相关依赖。
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>aliyun-spring-boot-dependencies</artifactId>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
添加完成后刷新maven,让它自动下载。
最终,错误已解决 !!!
以上是关于完美解决导入aliyun-oss-spring-boot-starter导入依赖报错的主要内容,如果未能解决你的问题,请参考以下文章
Java基础学习总结(194)—— Java 多线程 + List 分段完美解决导入等批量更新场景问题