카드 매입 승인 경로 Spring Boot 3 전환 (ACX-E2E-1785394564819)
Some checks failed
Verify / source-contract (push) Has been cancelled
Some checks failed
Verify / source-contract (push) Has been cancelled
This commit is contained in:
parent
7d1e9e5a5b
commit
db5e3d135d
1 changed files with 29 additions and 0 deletions
29
proj-acquirex/README.md
Normal file
29
proj-acquirex/README.md
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# proj-acquirex
|
||||
|
||||
## 카드 매입 승인 경로 Spring Boot 3 전환
|
||||
|
||||
### 전환 범위
|
||||
- Spring Boot 3.2.5 (Jakarta EE 9+)
|
||||
- Java 17+
|
||||
- Spring Framework 6.x
|
||||
- Hibernate 6.x
|
||||
|
||||
### 검증 절차
|
||||
1. `./mvnw clean compile` - 컴파일 검증
|
||||
2. `./mvnw test` - 단위 테스트 실행
|
||||
3. `./mvnw verify` - 통합 검증
|
||||
|
||||
### API 엔드포인트
|
||||
- `POST /api/v1/approvals/card-acquisition` - 카드 매입 승인 요청
|
||||
- `GET /api/v1/approvals/card-acquisition/{approvalId}` - 승인 상태 조회
|
||||
|
||||
### 프로젝트 구조
|
||||
```
|
||||
src/main/java/com/acquirex/
|
||||
├── AcquirexApplication.java # 메인 애플리케이션
|
||||
├── CardAcquisitionApprovalStatus.java # 승인 상태 enum
|
||||
├── CardAcquisitionApprovalRequest.java # 요청 DTO
|
||||
├── CardAcquisitionApprovalResponse.java # 응답 DTO
|
||||
├── CardAcquisitionApprovalService.java # 비즈니스 로직
|
||||
└── CardAcquisitionApprovalController.java # REST 컨트롤러
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue