我的ajax代码
$.ajax(
url : '/ABC/xyz.htm',
type : 'POST',
success : function(response) {
alert("success :" + response);
},
error : function(res) {
alert("error");
},
});
我的控制器代码是
@ RequestMapping ( value = "/xyz" , method = RequestMethod.POST)
public @ ResponseBody String getBranchList ( ) {
return "success";
}
但它返回完整的 html 页面。
我正在使用弹簧 3.1.2
请帮我解决这个问题