채팅방 생성 썸네일형 리스트형 Spring 11. 채팅(채팅방 리스트 및 생성) @Slf4j @Controller @RequestMapping("/chat") //기본경로 지정 @SessionAttributes({"loginUser", "chatRoomNo"}) public class ChatController { @Autowired private ChatService chatService; // 채팅방 목록 조회(SELECT) @GetMapping("/chatRoomList") public String selectChatRoomList(Model model) { // 1) DB에서 채팅방 목록데이터 조회 List list = chatService.selectChatRoomList(); // 2) 조회된 데이터를 model에 추가 model.addAttribute("list", li.. 더보기 이전 1 다음