패키지 구조 수정 및 추가

This commit is contained in:
2026-04-08 17:13:45 +09:00
parent 2d0834472d
commit 42cd85f8e5

View File

@@ -147,23 +147,29 @@ build/libs/ROOT.jar
``` ```
api-app # 메인 실행 모듈 api-app # 메인 실행 모듈
├── app ├── app
│ └── src/main/java/com/cd/detection │ └── src/main
│ ├── DabeeoDetectionApiApplication.java │ ├── java/com/cd/detection
│ │ ├── DabeeoDetectionApiApplication.java
│ │ │ │
│ ├── config # 설정 파일 ├── config # 설정 파일
│ │ │ │
│ ├── domain # 도메인 ├── domain # 도메인
│ │ ├── imagery # 영상 데이터 관리 │ │ ├── imagery # 영상 데이터 관리
│ │ ├── labeling # 라벨링 툴 │ │ ├── labeling # 라벨링 툴
│ │ ├── label # 라벨링 관리 │ │ ├── label # 라벨링 관리
│ │ ├── model # 모델관리 │ │ ├── model # 모델관리
│ │ ├── inference # 추론관리 │ │ ├── inference # 추론관리
│ │ ├── system # 시스템관리 │ │ ├── system # 시스템관리
│ │ └── log # 로그관리 │ │ └── log # 로그관리
│ │ │ │
│ ├── entity # 공용 JPA 엔티티 (DB 공통 사용) ├── entity # 공용 JPA 엔티티 (DB 공통 사용)
│ │ │
│ │ └── repository # 공용 Repository (DB 공통 인터페이스/구현)
│ │ │ │
│ └── repository # 공용 Repository (DB 공통 인터페이스/구현) │ └── resources # 설정 및 리소스 파일
│ ├── application.yml
│ ├── application-dev.yml
│ └── application-prod.yml
├── infrastructure-db-postgres # Postgres 전용 설정/확장 ├── infrastructure-db-postgres # Postgres 전용 설정/확장
│ └── build.gradle │ └── build.gradle