목록Client/Thymeleaf (2)
써먹는 웹개발
Thymeleaf의 사용방법을 모른다면 1번처럼 하게되고, 조금이라도 안다면 2번처럼 개발하게 된다. 1. 목록에서 Map 형식으로 리턴 방법 1) Controller ※ 서비스에서 List 리턴 1 2 3 4 @GetMapping("/userIdList") public Map userIdList(Model model) { return manageService.userIdList(); } Colored by Color Scripter cs 2) js 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 $.ajax({ type: 'GET', url: '/userIdList', contentType:'application/json', dataType: "json", s..
1. 나의 경우 파라미터에 @ModelAttribute("queryParam") QueryParams queryParams 가 없었다. 1 2 3 4 5 @GetMapping(value = {"", "/"}) public String forwardMain(Model model, @ModelAttribute("queryParams") QueryParams queryParams) { return "views/main/index"; } Colored by Color Scripter cs 2. 백앤드에서 문제가 없는데 프론트에서 문제가 생기는 경우 - name의 상위 변수 뒤에 ?를 붙여줄 것 1 ${member?.name} cs 2번 참고 : https://spacedev.tistory.com/7