Error
Unknown return value type [java.lang.Integer]
Java ์๋ฒ์ Ajax ํธ์ถ ์ ์๋ฌ
Solution Content
@ResponsBody ๋๋ฝ
: ๋ฆฌํด๋๋ ๊ฐ์ view ๋ฅผ ํตํด์ ์ถ๋ ฅ๋์ง ์๊ณ HTTP ResponseBody ์ ์ง์ ์ฐ์ฌ์ง๊ฒ ๋จ.
Before
@RequestMapping(value = "/test.do", method = RequestMethod.POST)
public int test(HttpServletRequest request, @ModelAttribute VO vo) throws Exception {
int testCnt = testService.testCnt(vo);
return testCnt;
}
After
@ResponseBody
@RequestMapping(value = "/test.do", method = RequestMethod.POST)
public int test(HttpServletRequest request, @ModelAttribute VO vo) throws Exception {
int testCnt = testService.testCnt(vo);
return testCnt;
}