ajax데이터를 controller에서 받아올 때 null이 뜨는 경우
$.ajax({ // 컨트롤러와 통신 type: 'POST', url: "/test", data: {"id": id, 'name' : name ,'email': email}, dataType: "text", contentType: "application/json; charset=UTF-8", success: function(data) { alert("성공"); }, error: function(jqXHR, textStatus, errorThrown) { alert("ERROR : " + textStatus + " : " + errorThrown); } }); 분명 controller에서 @RequestParam으로 잘 받아주었는데 null이 뜨는 경우 중 하나를 발견했다. 저 코드에서 잘못된 부분이 있다..
2020. 10. 27.