2021
09-24
09-24
Springboot集成阿里云OSS上传文件系统教程
第一步:开通阿里云OSS服务,创建Bucket,获取id和密钥第二步:根据官方文档编写上传代码1.新建maven项目添加依赖:<!--阿里云oss依赖--><dependency><groupId>com.aliyun.oss</groupId><artifactId>aliyun-sdk-oss</artifactId></dependency><!--日期工具栏依赖--><dependency><groupId>joda-time</groupId><artifactId>joda-time</artifactId></dependency>2.配置application.properties#服务端口server.port=8002#...
继续阅读 >