SSM 처리 양식에 업로드된 파일을 포함하는 전체 양식을 제출하는 방법
13229 단어 양식 제출파일 업로드 포함
SSM 처리 양식에 업로드된 파일을 포함하는 전체 양식을 제출하는 방법
더 이상 찾지 마세요. 여러 가지 설이 다 있어요. 그런데 제가 뒤져봤는데 다 갖추어지지 않았어요. 제가 쓴 걸 다 꺼냈어요...내 프론트 데스크 코드는:
Date: 2018/5/4
Time: 21:56
To change this template use File | Settings | File Templates.
--%>
"java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
"http://java.sun.com/jsp/jstl/core" prefix="c"%>
"http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title> title>
head>
<body>
<form id="itemForm" action="${pageContext.request.contextPath }/items/updateItems.do" enctype="multipart/form-data" method="post">
<input type="hidden" name="id" value="${items.id }" /> :
<table width="100%" border=1>
<tr>
<td> td>
<td><input type="text" name="name" value="${items.name }" />td>
tr>
<tr>
<td> td>
<td><input type="text" name="price"
value="${items.price }" />td>
tr>
<tr>
<td> td>
<td><input type="text" name="createtime"
value="${items.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/>" />td>
tr>
<tr>
<td> td>
<td><c:if test="${items.pic !=null}">
<img src="/pic/${items.pic}" width=100 height=100 />
<br />
c:if> <input type="file" name="upload" />td>
tr>
<tr>
<td> td>
<td><textarea rows="3" cols="30" name="detail">${items.detail }textarea>
td>
tr>
<tr>
<td colspan="2" align="center"><input type="submit" value=" " />
td>
tr>
table>
form>
body>
html>
내 Controller 코드는 다음과 같습니다.
@RequestMapping("/updateItems.do")
public String updateItems(@Param("id") Integer id, @Param("name") String name, @Param("price") Float price, @Param("createtime") String createtime,
@Param("detail") String detail, @Param("upload") MultipartFile upload, HttpServletRequest request) throws Exception {
String realPath = request.getSession().getServletContext().getRealPath("/pic/");
File file = new File(realPath);
if(!file.exists()) {
file.mkdirs();
}
Items items = new Items();
if(upload!=null) {
String filename = upload.getOriginalFilename();
upload.transferTo(new File(realPath,filename));
items.setPic(filename);
}else {
items.setPic(null);
}
items.setDetail(detail);
items.setId(id);
items.setPrice(price);
items.setName(name);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
items.setCreatetime(sdf.parse(createtime));
productService.update(items);
return "redirect:findAll.do";
}
내 Dao 계층 코드는 다음과 같습니다.
@Update("update items set name = #{name},price=#{price},pic=#{pic},createtime=#{createtime},detail=#{detail} where id=#{id}")
void update(@Param("id") Integer id, @Param("createtime") Date createtime, @Param("detail") String detail, @Param("name") String name, @Param("pic") String pic,@Param("price") Float price) throws Exception;
** 그리고 반드시pom의존도:
commons-fileupload commons-fileupload 1.3.1 commons-io commons-io 2.4`** springmvc.xml: id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="10485760" />
다른 건 아무것도 아니지만,