文件上传
1.搭建好的springboot框架(之前博客有),然后还要配置下application.properties,添加如下: # multipart# 开启上传 spring.servlet.multipart.enabled=true# 磁盘书写值控制 spring.servlet.multipart.file-size-threshold=2KB# 最大文件大小 spring.servlet.multipart.max-file-size=200MB# 最大请求大小 spring.servlet.multipart.max-request-size=215MB 2.然后controller中写如下代码: PS:其实应该建表将文件的一些信息存储下,这里就省略了,感兴趣的可以尝试下。 package com.example.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org