var form = {

  field : data

};


$(document).ready(function() {

  $.ajax({

    url : "http://localhost:8080/rest_api",

    type : "method",

    dataType : "json",

    contentType : "application/json",

    data : JSON.stringify(form),

    success : function(data) {

    console.log(data);

    }

  });

});

빈 index.jsp 에 jquery.js 임포트문 하나 추가해놓고 테스트하는 게으른 개발자 허니몬.
서버에서는 @RequestBody로 Form오브젝트를 만들어서 받아쓰고 있다.
JSON data를 Deserializer할 때, 스프링에서 EntityObject 로 매핑해주질 못해서 꼼수를 쓰고 있는 불편한 상황을 어찌 해결해야할까 고민중.

+ Recent posts