spring
1031
by 뱅뱅뱅뱅뱅
2024. 10. 31.
- html 다 완성후 실행하는 함수
$(funtion () {
});
- get방식 ( url 로 값을 주고 받음 )
- @RequestMapping("/chat")
- @RequestParam String roomId
- let url =
/chat/enter?roomId=${roomId}&writer=${writer}
;
- @GetMapping("/enter")
- url 에서 ?roomId=추출할 값
- ? 와 &
- @PathVariable
- let url =
/chat/enter/${roomId}/${writer}
;
- @GetMapping(/enter/{roomId}/{writer})
- {} 값으로 받음
@GetMapping("/enter") // GET ? 와 &
// @GetMapping("/enter/{roomId}/{writer}") // GET 주소로 데이터 전달
public String enterChatRoom(Model model
, @RequestParam String roomId // GET ? 와 &
// , @PathVariable String roomId // GET 주소
, @RequestParam String writer // GET ? 와 &
// , @PathVariable String writer // GET 주소
) {
model.addAttribute("chatRoomDto", this.chatRoomService.findByRoomId(roomId));
model.addAttribute("writer", writer);
return "chat/chatroomdetail";
}