一、新建云存储微服务

1、在service模块下创建子模块service-oss

图片.png

2、配置pom.xml

service-oss上级模块service已经引入service的公共依赖,所以service-oss模块只需引入阿里云oss相关依赖即可,
service父模块已经引入了service-base模块,所以Swagger相关默认已经引入

  1. <dependencies>
  2. <!-- 阿里云oss依赖 -->
  3. <dependency>
  4. <groupId>com.aliyun.oss</groupId>
  5. <artifactId>aliyun-sdk-oss</artifactId>
  6. </dependency>
  7. <!-- 日期工具栏依赖 -->
  8. <dependency>
  9. <groupId>joda-time</groupId>
  10. <artifactId>joda-time</artifactId>
  11. </dependency>
  12. </dependencies>

3、配置application.properties

  1. #服务端口
  2. server.port=8002
  3. #服务名
  4. spring.application.name=service-oss
  5. #环境设置:devtestprod
  6. spring.profiles.active=dev
  7. #阿里云 OSS
  8. #不同的服务器,地址不同
  9. aliyun.oss.file.endpoint=your endpoint
  10. aliyun.oss.file.keyid=your accessKeyId
  11. aliyun.oss.file.keysecret=your accessKeySecret
  12. #bucket可以在控制台创建,也可以使用java代码创建
  13. aliyun.oss.file.bucketname=guli-file

4、logback-spring.xml

5、创建启动类

创建OssApplication.java

  1. package com.guli.oss;
  2. @SpringBootApplication
  3. @ComponentScan({"com.atguigu"})
  4. public class OssApplication {
  5. public static void main(String[] args) {
  6. SpringApplication.run(OssApplication.class, args);
  7. }
  8. }

6、启动项目

报错
图片.pngSpring boot 会默认加载org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration这个类,
而DataSourceAutoConfiguration类使用了@Configuration注解向spring注入了dataSource bean,又因为项目(oss模块)中并没有关于dataSource相关的配置信息,所以当spring创建dataSource bean时因缺少相关的信息就会报错。

解决办法:
方法1、在@SpringBootApplication注解上加上exclude,解除自动加载DataSourceAutoConfiguration

  1. @SpringBootApplication(exclude = DataSourceAutoConfiguration.class)

二、实现文件上传

1、从配置文件读取常量

创建常量读取工具类:ConstantPropertiesUtil.java
使用@Value读取application.properties里的配置内容
用spring的 InitializingBean 的 afterPropertiesSet 来初始化配置信息,这个方法将在所有的属性被初始化后调用。

  1. /**
  2. * 常量类,读取配置文件application.properties中的配置
  3. */
  4. @Component
  5. //@PropertySource("classpath:application.properties")
  6. public class ConstantPropertiesUtil implements InitializingBean {
  7. @Value("${aliyun.oss.file.endpoint}")
  8. private String endpoint;
  9. @Value("${aliyun.oss.file.keyid}")
  10. private String keyId;
  11. @Value("${aliyun.oss.file.keysecret}")
  12. private String keySecret;
  13. @Value("${aliyun.oss.file.filehost}")
  14. private String fileHost;
  15. @Value("${aliyun.oss.file.bucketname}")
  16. private String bucketName;
  17. public static String END_POINT;
  18. public static String ACCESS_KEY_ID;
  19. public static String ACCESS_KEY_SECRET;
  20. public static String BUCKET_NAME;
  21. public static String FILE_HOST ;
  22. @Override
  23. public void afterPropertiesSet() throws Exception {
  24. END_POINT = endpoint;
  25. ACCESS_KEY_ID = keyId;
  26. ACCESS_KEY_SECRET = keySecret;
  27. BUCKET_NAME = bucketName;
  28. FILE_HOST = fileHost;
  29. }
  30. }

2、文件上传

1)创建Service接口:FileService.java

  1. public interface FileService {
  2. /**
  3. * 文件上传至阿里云
  4. * @param file
  5. * @return
  6. */
  7. String upload(MultipartFile file);
  8. }

2)实现:FileServiceImpl.java

参考SDK中的:Java->上传文件->简单上传->流式上传->上传文件流图片.png

  1. public class FileServiceImpl implements FileService {
  2. @Override
  3. public String upload(MultipartFile file) {
  4. //获取阿里云存储相关常量
  5. String endPoint = ConstantPropertiesUtil.END_POINT;
  6. String accessKeyId = ConstantPropertiesUtil.ACCESS_KEY_ID;
  7. String accessKeySecret = ConstantPropertiesUtil.ACCESS_KEY_SECRET;
  8. String bucketName = ConstantPropertiesUtil.BUCKET_NAME;
  9. String fileHost = ConstantPropertiesUtil.FILE_HOST;
  10. String uploadUrl = null;
  11. try {
  12. //判断oss实例是否存在:如果不存在则创建,如果存在则获取
  13. OSSClient ossClient = new OSSClient(endPoint, accessKeyId, accessKeySecret);
  14. if (!ossClient.doesBucketExist(bucketName)) {
  15. //创建bucket
  16. ossClient.createBucket(bucketName);
  17. //设置oss实例的访问权限:公共读
  18. ossClient.setBucketAcl(bucketName, CannedAccessControlList.PublicRead);
  19. }
  20. //获取上传文件流
  21. InputStream inputStream = file.getInputStream();
  22. //构建日期路径:avatar/2019/02/26/文件名
  23. String filePath = new DateTime().toString("yyyy/MM/dd");
  24. //文件名:uuid.扩展名
  25. String original = file.getOriginalFilename();
  26. String fileName = UUID.randomUUID().toString();
  27. String fileType = original.substring(original.lastIndexOf("."));
  28. String newName = fileName + fileType;
  29. String fileUrl = fileHost + "/" + filePath + "/" + newName;
  30. //文件上传至阿里云
  31. ossClient.putObject(bucketName, fileUrl, inputStream);
  32. // 关闭OSSClient。
  33. ossClient.shutdown();
  34. //获取url地址
  35. uploadUrl = "http://" + bucketName + "." + endPoint + "/" + fileUrl;
  36. } catch (IOException e) {
  37. throw new GuliException(ResultCodeEnum.FILE_UPLOAD_ERROR);
  38. }
  39. return uploadUrl;
  40. }
  41. }

3)控制层controller

创建controller:FileUploadController.java

  1. package com.guli.oss.controller;
  2. @Api(description="阿里云文件管理")
  3. @CrossOrigin //跨域
  4. @RestController
  5. @RequestMapping("/admin/oss/file")
  6. public class FileController {
  7. @Autowired
  8. private FileService fileService;
  9. /**
  10. * 文件上传
  11. *
  12. * @param file
  13. */
  14. @ApiOperation(value = "文件上传")
  15. @PostMapping("upload")
  16. public R upload(
  17. @ApiParam(name = "file", value = "文件", required = true)
  18. @RequestParam("file") MultipartFile file) {
  19. String uploadUrl = fileService.upload(file);
  20. //返回r对象
  21. return R.ok().message("文件上传成功").data("url", uploadUrl);
  22. }
  23. }

4、重启oss服务

5、Swagger中测试文件上传

6、配置nginx反向代理

将接口地址加入nginx配置

  1. location ~ /eduoss/ {
  2. proxy_pass http://localhost:8001;
  3. }