오류
further occurrences of HTTP request parsing errors will be logged at DEBUG level.
해결
function isDeptno(deptno) {
console.log(deptno);
$.ajax({
url : "emp/deptno", // url : "/emp/deptno",
method : "post",
data : "",
dataType : "json",
cache : false,
success : function(res) {
alert(res.result);
return res.result;
},
error : function(xhs, status, err) {
alert(err);
}
});
}