我在這裏遇到問題,我需要您的幫助。spring mvc - 如何在不創建視圖的情況下從控制器檢索值
我試圖從控制器中檢索一個整數值到jsp。
在我的jsp我有一個Ajax調用:
$("#hdnCustomerSize").load(contextPath+"/customer/size", function() {
// some codes
});
在我的控制器:
@RequestMapping(method = RequestMethod.GET, value="/size")
public void getCustomerSize(Model model) {
model.addAttribute("customerSize", customerService.getCustomers().size());
}
我的問題是即時得到一個異常:
javax.servlet.ServletException: Could not resolve view with name 'customer/size' in servlet with name 'tombuyandsell'.
我知道即時得到這個例外是因爲我故意沒有在views.properties
中映射這個。原因是我只想獲得整數值size
而不是整個jsp頁面。請幫忙。
由於這個question..i學會了一些ResponseBody – user533
@PratapMurukutla不客氣。 – NinjaBoy