springmvc 이미지 업로드 및 json 데이터 변환 과정 상세 설명

springmvc 사진 업로드
1.해당 pom 의존 가 져 오기

 <dependency>
   <groupId>commons-fileupload</groupId>
   <artifactId>commons-fileupload</artifactId>
   <version>1.3.3</version>
  </dependency>
2.springmvc-servlet.xml 설정 추가

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    <!--      JSP  pageEncoding    ,            -->
    <property name="defaultEncoding" value="UTF-8"></property>
    <!--       (  ) 1024*1024*50=50M-->
    <property name="maxUploadSize" value="52428800"></property>
    <!--resolveLazily             ,          -->
    <property name="resolveLazily" value="true"/>
  </bean>
3.프론트 파일 업로드 폼

<%--
 Created by IntelliJ IDEA.
 User: ASUS
 Date: 2019/10/5
 Time: 10:25
 To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
  <title>    </title>
</head>
<body>
  <form action="${pageContext.request.contextPath}/upload" method="post" enctype="multipart/form-data">
         :<input type="file" name="img" id="">
    <button type="submit">  </button>
  </form>
</body>
</html>
HelloController

/**
   *     
   * @param img
   * @return
   */
  @RequestMapping("/upload")
  public String upload(MultipartFile img){
    try {
      FileUtils.copyInputStreamToFile(img.getInputStream(),new File("F:/xxx/"+img.getOriginalFilename()));
    } catch (IOException e) {
      e.printStackTrace();
    }
    return "forward:hello3";
  }
json 데이터 변환
주해 형식 변환@ResponseBody
도구 클래스 JSON Result

package com.liuwenwu.util;

public class JSONResult {

  //       
  private Integer status;

  //     
  private String msg;

  //       
  private Object data;
  
  private String ok;  //    

  public static JSONResult build(Integer status, String msg, Object data) {
    return new JSONResult(status, msg, data);
  }

  public static JSONResult ok(Object data) {
    return new JSONResult(data);
  }

  public static JSONResult ok() {
    return new JSONResult(null);
  }
  
  public static JSONResult errorMsg(String msg) {
    return new JSONResult(500, msg, null);
  }
  
  public static JSONResult errorMap(Object data) {
    return new JSONResult(501, "error", data);
  }
  
  public static JSONResult errorTokenMsg(String msg) {
    return new JSONResult(502, msg, null);
  }
  
  public static JSONResult errorException(String msg) {
    return new JSONResult(555, msg, null);
  }

  public JSONResult() {

  }

  public JSONResult(Integer status, String msg, Object data) {
    this.status = status;
    this.msg = msg;
    this.data = data;
  }

  public JSONResult(Object data) {
    this.status = 200;
    this.msg = "OK";
    this.data = data;
  }

  public Boolean isOK() {
    return this.status == 200;
  }

  public Integer getStatus() {
    return status;
  }

  public void setStatus(Integer status) {
    this.status = status;
  }

  public String getMsg() {
    return msg;
  }

  public void setMsg(String msg) {
    this.msg = msg;
  }

  public Object getData() {
    return data;
  }

  public void setData(Object data) {
    this.data = data;
  }

  public String getOk() {
    return ok;
  }

  public void setOk(String ok) {
    this.ok = ok;
  }

}
HelloController

@ResponseBody
  @RequestMapping("/jsonData3")
  public JSONResult jsonData3(){
    return JSONResult.ok("  :         、  、  、    ,        map     ");
  }

  @ResponseBody
  @RequestMapping("/jsonData4")
  public JSONResult jsonData4(){
    return JSONResult.errorMsg("  :         、  、  、    ,        map     ");
  }
효과:


이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기