程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> springmvc添加mock json的支持,springmvcjson

springmvc添加mock json的支持,springmvcjson

編輯:JAVA綜合教程

springmvc添加mock json的支持,springmvcjson


在springmvc中 添加對服務器classPath下的json文件解析之後返回的mock功能:

 

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;


@RestController
@RequestMapping("/mock")
public class MockController {

    @RequestMapping(value = "/{module}/{action}", method = RequestMethod.POST)
    public JsonNode mockContent(@PathVariable String module, @PathVariable String action, HttpServletRequest request,
            HttpServletResponse response) {
        JsonNode actualObj = null;
        InputStream fis = null;
        try {
            ClassLoader ctxLoader = Thread.currentThread().getContextClassLoader();
            URL resURL = ctxLoader.getResource(action + ".json");
            URLConnection resConn = resURL.openConnection();
            resConn.setUseCaches(false);
            fis = resConn.getInputStream();
            StringBuilder builder = new StringBuilder();
            int ch;
            while ((ch = fis.read()) != -1) {
                builder.append((char) ch);
            }
            ObjectMapper mapper = new ObjectMapper();
            actualObj = mapper.readTree(builder.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                }
            }
        }
        return actualObj;
    }
}

  

相應的也可以增加其他的類型支持,比如string數據, 或者是其他的。由於 springmvc rest接口默認會使用json的轉化器,所以需要轉化成對應的json格式

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved