본문 바로가기
spring

1031

by 뱅뱅뱅뱅뱅 2024. 10. 31.
  • Controller
    • 화면 표출 리턴형: String
- 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";
    }

'spring' 카테고리의 다른 글

1105  (0) 2024.11.05
1101  (0) 2024.11.01
오라클 서버 만들기 2  (0) 2024.10.14
오라클 서버 만들기  (2) 2024.10.11
240925  (6) 2024.09.25