码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMvc 文件上传注意事项

时间:2016-12-20 18:06:18      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:前端   data   str   pos   Enctype   bsp   htm   strong   form   

前端

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 文件上传注意事项

标签:前端   data   str   pos   Enctype   bsp   htm   strong   form   

原文地址:http://www.cnblogs.com/rgqancy/p/6203512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!