首页>代码>SpringBoot开发网站后台管理系统>/springboot-mini/src/main/java/com/zyxx/api/controller/UploadApiController.java
package com.zyxx.api.controller;

import com.zyxx.common.minio.MinioUtils;
import com.zyxx.common.utils.ResponseResult;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;

import javax.servlet.http.HttpServletRequest;

@Api(tags = "文件上传")
@RestController
@RequestMapping("/api/upload")
public class UploadApiController {

    @Autowired
    private MinioUtils minioUtils;

    @PostMapping(value = "upload", headers = "content-type=multipart/form-data")
    public ResponseResult upload(HttpServletRequest request) {
        MultipartHttpServletRequest multiRequest = (MultipartHttpServletRequest) request;
        MultipartFile file = multiRequest.getFile("file");
        return minioUtils.uploadFile(file, "", "app");
    }

}
最近下载更多
Luck_ZDM  LV11 4月12日
13521878735  LV3 3月26日
森sdfgf  LV8 2月8日
skook7  LV2 2023年12月14日
qwerdf963  LV3 2023年11月20日
JAVA小菜雀  LV7 2023年11月9日
edpwyg  LV14 2023年10月22日
asdsasddas  LV6 2023年4月20日
ming_123_9715  LV23 2023年4月9日
huangkexin  LV1 2023年4月4日
最近浏览更多
akittyboy  LV9 4月16日
HANCW  LV8 4月16日
Luck_ZDM  LV11 4月12日
宋金成 4月8日
暂无贡献等级
wwwwww1  LV12 4月8日
13521878735  LV3 3月26日
15103432984  LV2 3月16日
jay1992  LV14 3月11日
LoveAsY 3月10日
暂无贡献等级
407129151  LV6 2月18日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友