Skip to content

Commit

Permalink
feat: 불필요한 클래스 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunn522 committed Oct 9, 2024
1 parent d9e6f8f commit ecd329d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 49 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,14 @@

import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.event.EventListener;
import org.springframework.messaging.handler.annotation.*;
import org.springframework.messaging.simp.annotation.SubscribeMapping;
import org.springframework.messaging.simp.stomp.StompHeaderAccessor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.socket.messaging.SessionDisconnectEvent;
import space.space_spring.argumentResolver.userSpace.CheckUserSpace;
import space.space_spring.dto.chat.request.ChatMessageRequest;
import space.space_spring.dto.chat.response.ChatMessageLogResponse;
import space.space_spring.dto.chat.response.ChatMessageResponse;
import space.space_spring.service.ChattingService;
import space.space_spring.service.UserChatRoomService;

import java.io.IOException;
import java.util.Map;
Expand All @@ -27,7 +21,6 @@ public class ChattingController {

private final ChattingService chattingService;

private final UserChatRoomService userChatRoomService;

@MessageMapping("/chat/{chatRoomId}") // {chatRoomId} 채팅방으로 보낸 메세지 매핑
@SendTo("/topic/chat/{chatRoomId}") // {chatRoomId} 채팅방을 구독한 곳들로 메세지 전송
Expand Down
42 changes: 0 additions & 42 deletions src/main/java/space/space_spring/service/UserChatRoomService.java

This file was deleted.

0 comments on commit ecd329d

Please sign in to comment.