Open
Conversation
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.
[BE-2] init: 프로젝트 초기 패키지 구조 및 도메인 틀 구성
📑 PR 내용
1. 개요 (Overview)
2. 주요 변경 사항 (Key Changes)
📂 도메인별 상세 패키지 구성
각 패키지 내부에
.gitkeep또는 초기 클래스 파일을 배치하여 폴더 구조를 확정했습니다.admin(관리자 도메인)controller,service,repository,entity,dtoaudit(졸업 사정 도메인)controller,service,dtoauth(인증/인가 도메인)controller,service,repository,entity,dtostudent(학생 데이터 도메인)service,dtoStudentExcelService를 포함합니다.Entity와Repository를 생성하지 않고, 순수 자바 객체(Student)를 통해 데이터를 관리합니다.global(공통 모듈)config: 보안, JPA 등 프로젝트 전역 설정exception: 예외 처리기 및 커스텀 에러 코드util: 엑셀 파싱 등 공통 유틸리티 도구3. 설계 의도 (Design Notes)
.gitkeep을 배치했습니다.audit과student를 분리하여 데이터 파싱과 실제 심사 로직이 섞이지 않도록 설계했습니다.🚀 다음 작업 (Next Steps)
Admin) 엔티티 및 회원가입 로직 구현