프런트 엔드:
$.ajax({
type: "get",
async: false,//비동기 여부
url: "http://ip: 포트/서블릿 주소" ,
dataType: "jsonp",
contentType: "application/x-www-form-urlencoded;charset=UTF-8",
jsonpCallback: "callback",
데이터: { }, //매개변수 전달됨
성공: function(e){
var r = $.parseJSON(e);//e: 반환 값
},
오류: function( XMLHttpRequest, textStatus, errorThrown) {}
});
백엔드: 서블릿 사용 예시
String callback = request.getParameter("callback");//콜백 함수
request.setCharacterEncoding("utf - 8");//한자 깨짐 방지
response.setCharacterEncoding("utf-8");//한자 깨짐 방지
//response.setHeader("pragma", "no-cache") ;
//response.setHeader("cache-control", "no-cache");
//반환될 결과 목록
JSONArray jsonArray = JSONArray.fromObject(list); response.getWriter( ).print(callback+"('"+jsonArray+"')")
response.getWriter().flush();