You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
VO, Service, Mapper 클래스 이름 충돌 문제 해결 ## 문제 - history 패키지와 vmis 패키지에 동일한 이름의 VO 클래스 존재 - CarBassMatterInqireVO, CarLedgerFrmbkVO, CarLedgerFrmbkDtlVO 충돌 - Bean 생성 오류 발생 ## 해결 모든 VMIS 패키지 클래스에 Vmis prefix 추가: ### VO 클래스 (충돌 해결) - CarBassMatterInqireVO → VmisCarBassMatterInqireVO - CarLedgerFrmbkVO → VmisCarLedgerFrmbkVO - CarLedgerFrmbkDtlVO → VmisCarLedgerFrmbkDtlVO ### Service 클래스 - CarBassMatterInqireService → VmisCarBassMatterInqireService - CarBassMatterInqireLogService → VmisCarBassMatterInqireLogService - CarLedgerFrmbkService → VmisCarLedgerFrmbkService - CarLedgerFrmbkLogService → VmisCarLedgerFrmbkLogService - RequestEnricher → VmisRequestEnricher ### Mapper 클래스 - CarBassMatterInqireMapper → VmisCarBassMatterInqireMapper - CarLedgerFrmbkMapper → VmisCarLedgerFrmbkMapper ### MyBatis XML 업데이트 - mapper namespace 및 resultType 변경 - CarBassMatterInqireMapper_maria.xml - CarLedgerFrmbkMapper_maria.xml ## 빌드 성공 확인 ✅ - Bean 충돌 완전 해결 - 전체 컴파일 성공 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
1 month ago | |
|---|---|---|
| DB/DDL | 1 month ago | |
| src/main | 1 month ago | |
| .gitignore | 1 month ago | |
| VMIS_INTEGRATION_COMPLETE.md | 1 month ago | |
| VMIS_INTEGRATION_STRATEGY_DESIGN.md | 1 month ago | |
| VMIS_INTERFACE_INTEGRATION_ANALYSIS.md | 1 month ago | |
| VMIS_INTERFACE_MIGRATION_PLAN.md | 1 month ago | |
| build.gradle | 1 month ago | |
| gradle.properties | 1 month ago | |