Merged
Conversation
- application.properties 파일 삭제 - 메인 설정을 위한 application.yml 추가 - 로컬 개발용 application-local.yml 추가 - 데이터베이스 보안 설정용 application-db.yml 추가 - 테스트 환경용 application-test.yml 추가
- 채팅과 관련된 도메인 설계
- 채팅방 생성, 조회, 수정, 삭제 API 구현 - 메시지 전송, 조회 API 구현 - 사용자 관리 기능 추가 - 도메인 엔티티 및 리포지토리 구현 - 서비스 레이어 비즈니스 로직 구현 - 컨트롤러 레이어 REST API 엔드포인트 구현 - 포괄적인 단위 테스트 및 통합 테스트 작성 - TestObjectFactory를 통한 테스트 데이터 생성 표준화 - 예외 처리 및 DTO 변환 로직 구현
This file contains hidden or 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
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.
📌 관련 이슈
✨ PR 작업 내용
도메인 계층 구현
데이터 접근 계층
ChatRoomRepository: 채팅방 CRUD 및 사용자별 조회MessageRepository: 메시지 CRUD 및 채팅방별 조회UserRepository: 사용자 관리비즈니스 로직 계층
ChatRoomService: 채팅방 생성, 조회, 수정, 삭제 로직MessageService: 메시지 전송, 조회 로직테스트 구현
다음 할 일