fix(backend): Spring 6.1 RestClient bean 모호성 기동 실패 해소 #79

병합
htlee hotfix/backend-parameters-flag 에서 develop 로 1 commits 를 머지했습니다 2026-04-17 07:42:10 +09:00
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -142,6 +142,7 @@
<goal>compile</goal>
</goals>
<configuration>
<parameters>true</parameters>
<annotationProcessorPaths>
<path>
<groupId>org.springframework.boot</groupId>
@ -161,6 +162,7 @@
<goal>testCompile</goal>
</goals>
<configuration>
<parameters>true</parameters>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>

파일 보기

@ -0,0 +1,6 @@
config.stopBubbling = true
# @RequiredArgsConstructor 가 생성하는 constructor parameter 에 필드의 @Qualifier 를 복사한다.
# Spring 6.1+ 의 bean 이름 기반 fallback 은 parameter-level annotation 을 요구하므로,
# 필수 처리하지 않으면 여러 bean 중 모호성이 발생해 기동이 실패한다.
lombok.copyableAnnotations += org.springframework.beans.factory.annotation.Qualifier