1 1.今天记一下实训的时候答辩没回答上来的问题,如何在后端限制上传文件的大小。 在applycation.yml中配置即可。 spring: application: name: ptms resources: static-locations: classpath:/static cache: period: PT1M # 60 SECONDS servlet: multipart: max-file-size: 40Mb max-request-size: 40Mb