Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
84ed2b0
refactor: Penalty enum java -> kotlin으로 폴더 변경
soo0711 Feb 18, 2026
f152335
refactor: Penalty enum kotlin으로 문법 변환
soo0711 Feb 18, 2026
c1c285c
refactor: Penalty entity, repository java -> kotlin으로 폴더 변경
soo0711 Feb 18, 2026
c59cc0c
refactor: Penalty dto, mapper java -> kotlin으로 폴더 변경
soo0711 Feb 18, 2026
0cfe119
refactor: Penalty entity, repository kotlin으로 문법 변환
soo0711 Feb 18, 2026
7090c0a
refactor: Penalty dto, mapper kotlin으로 문법 변환
soo0711 Feb 18, 2026
68fd379
build: Lombok 의존성 및 Kotlin 호환성 설정 추가
soo0711 Feb 18, 2026
b0dea58
refactor: Kotlin 마이그레이션에 따른 Java 호출 수정
soo0711 Feb 18, 2026
3289ea6
refactor: Penalty exception java -> kotlin으로 폴더 변경
soo0711 Feb 18, 2026
176fb19
refactor: Penalty exception kotlin으로 문법 변환
soo0711 Feb 18, 2026
432fefc
refactor: Penalty usecase java -> kotlin으로 폴더 변경
soo0711 Feb 18, 2026
167edd5
refactor: Penalty service 불필요한 파일 삭제
soo0711 Feb 18, 2026
8b6637f
refactor: Penalty controller, responsecode java -> kotlin으로 폴더 변경
soo0711 Feb 18, 2026
c3b7cdb
refactor: 코틀린 문법에 맞게 Penalty errorcode 수정
soo0711 Feb 18, 2026
56864e3
refactor: Penalty usecase kotlin으로 문법 변환
soo0711 Feb 18, 2026
102bea6
refactor: Penalty controller, responseCode kotlin으로 문법 변환
soo0711 Feb 18, 2026
bbbb06f
refactor: PenaltyType enum 패키지 이동
soo0711 Feb 18, 2026
47e7915
refactor: Penalty DTO 개별 파일로 분리
soo0711 Feb 18, 2026
dce510a
refactor: Penalty usecase command/query 분리
soo0711 Feb 18, 2026
1e38309
refactor: Penalty mapper, controller 새 구조에 맞게 수정
soo0711 Feb 18, 2026
174beff
refactor: GetPenaltyQueryService 조회 N+1 쿼리 최적화
soo0711 Feb 18, 2026
f9bda23
refactor: Penalty 카운트 수정 시 User 비관적 락 적용
soo0711 Feb 18, 2026
d1770cd
fix: SavePenaltyUseCase 비관적 락 정확성 우선시하여 stale read 방지
soo0711 Feb 18, 2026
5f8a3c2
refactor: GetPenaltyQueryService UserCardinal N+1 쿼리 배치 조회로 최적화
soo0711 Feb 18, 2026
277c0fa
refactor: PenaltyRepository 동적 쿼리를 명시적 @Query로 전환
soo0711 Feb 18, 2026
84f416f
fix: PenaltyResponse에 항상 null 반환되던 필드에 실제 값 매핑
soo0711 Feb 18, 2026
680c098
refactor: Penalty UseCase 메서드명 execute를 도메인 동작명으로 변경
soo0711 Feb 18, 2026
2ae0b68
refactor: Penalty DTO 불필요한 nullable 제거 및 Mapper 파라미터 정리
soo0711 Feb 18, 2026
e0f942e
refactor: QueryService DTO 조합 로직 Mapper로 이동 및 메서드명 개선
soo0711 Feb 18, 2026
4f8caee
style: Penalty DTO에 Swagger @Schema 어노테이션 추가
soo0711 Feb 18, 2026
5c40226
refactor: Penalty 쿼리 표준화 및 LAZY fetch 전환
soo0711 Feb 18, 2026
9597c52
refactor: QueryService @Transactional 어노테이션 클래스 레벨로 이동
soo0711 Feb 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ plugins {
kotlin("jvm") version "2.1.0"
kotlin("plugin.spring") version "2.1.0"
kotlin("plugin.jpa") version "2.1.0"
kotlin("plugin.lombok") version "2.1.0"

id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

41 changes: 0 additions & 41 deletions src/main/java/com/weeth/domain/penalty/domain/entity/Penalty.java

This file was deleted.

This file was deleted.

Loading