SpringBoot文件上传

单文件上传

package com.hang.controller;

import org.springframework.http.HttpRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;

@Controller
public class OneUpController {
    @GetMapping("/tOneFileUp")
    public String toOnFileUp(){
        return "OneFileUp";
    }

    @PostMapping("upload")
    @ResponseBody
    public String upLoad(@RequestParam("file") MultipartFile file,  HttpServletRequest request){
        if(file.isEmpty()){
            return "上传失败";
        }

        String fileName = file.getOriginalFilename();
        //上传到本地
        //String filePath = "D:/img/";

        //上传至服务器
        String filePath = request.getSession().getServletContext().getRealPath("img/");

        File up = new File(filePath + fileName);
        try {
            file.transferTo(up);
            return "上传成功";
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "上传失败";
    }
}
#上传文件总大小
spring:
  servlet:
    multipart:
      max-request-size: 10MB
      max-file-size: 10MB #单个文件上传总大小
  thymeleaf:
    prefix: classpath:/templates/
    suffix: .html
  resources:
    static-locations: classpath:/static/ #文件静态资源存放路径
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>单文件上传</title>
</head>
<body>
    <form method="post" action="/upload" enctype="multipart/form-data">
        <input type="file" name="file"><br>
        <input type="submit" value="提交">
    </form>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值