Commit 7638e785 authored by macro's avatar macro
Browse files

Update MinioController.java

parent dc5d4ad3
...@@ -8,6 +8,7 @@ import com.macro.mall.dto.MinioUploadDto; ...@@ -8,6 +8,7 @@ import com.macro.mall.dto.MinioUploadDto;
import io.minio.*; import io.minio.*;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
...@@ -22,8 +23,9 @@ import java.util.Date; ...@@ -22,8 +23,9 @@ import java.util.Date;
* MinIO对象存储管理Controller * MinIO对象存储管理Controller
* Created by macro on 2019/12/25. * Created by macro on 2019/12/25.
*/ */
@Api(tags = "MinioController", description = "MinIO对象存储管理")
@Controller @Controller
@Api(tags = "MinioController")
@Tag(name = "MinioController", description = "MinIO对象存储管理")
@RequestMapping("/minio") @RequestMapping("/minio")
public class MinioController { public class MinioController {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment