티스토리 뷰

Resolved [org.springframework.web.bind.MissingServletRequestParameterException:Required String parameter 'grpCd' is not present]

 

@GetMapping("/common/codes/{grpCd}")
public List<TCmCode> common_list( @RequestParam(required = true) String grpCd) throws Exception {
	logger.debug("호출되었어요.");
	List<TCmCode> list;
	logger.debug("grpCd:" + grpCd);
	list = codeRepository.findByGrpCd(grpCd);
	return list;
	
}	

 원인 ) @RequestParam 으로 주려면 ajax 호출시 data : 항목에 넣어야 한다.

 주소라인에 값으로 호출하려면 @PathVariable로 받아야 한다.

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함