首页 > 代码库 > SpringMvc 文件上传注意事项

SpringMvc 文件上传注意事项

前端

1.表单提交方法与格式

<form class="form-horizontal" action="/biz/patent/edit" method="post" enctype="multipart/form-data">

2.input注意不要写value=""

<input type="file" name="attorneyFile" />

 

后端

3.entity.getAttorneyFile() != null不发生,即使你在HTML里没选任何文件, 因此关键判断是getSize() > 0。

entity.getAttorneyFile() != null && entity.getAttorneyFile().getSize() > 0

 

SpringMvc 文件上传注意事项