-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v1 채팅 기능 #12
Open
coke98
wants to merge
15
commits into
develop
Choose a base branch
from
feat/v1
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 불필요하거나 새로 만들 클래스 삭제
- 채팅 도메인(REST API, Websocket)에서 사용되는 컨버터 추가 - 웹소켓을 위한 ObjectMapper 빈설정 추가
- 서비스 클래스 및 메서드 생성 - 토큰 엔티티 및 레포지토리 생성 - 컨버터 클래스 추가 Co-authored-by: JeongeunChoi <[email protected]>
- 의존성 추가 - 매칭 완료 메시지를 받을 수 있는 컨슈머 클래스 생성
- 토큰 생성 관련 메서드 삭제 - 범위에 맞게 RoomIds를 추출하기위해 stream.range 수정 Co-authored-by: mjj111 <이메일 주소 필요>
- ChatBusiness 클래스를 주입받아 메서드를 사용하던 방식에서 직접 내부 로직을 구현하는 방식으로 수정 - 각 메서드에 로그 적용
- 아이디 값 관리를 위해 AutoIncrement 관련 코드 재적용
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🌟변경사항
🗂디렉토리 구조
웹소켓과 채팅 디렉토리를 따로 나누었으나, 비즈니스 레이어는 ChatBusiness 클래스에서 통합하여 관리하도록 두었습니다.
🧐코드리뷰 시 참고해서 봐주세요~!
비즈니스 로직을 중심으로 먼저 봐주시고, 다음 작업 후 새로운 PR로 올릴 예정입니다.