본문 바로가기
개발 기록/오류 분석

[Spring Boot] 오류: Ambiguous handler methods - URL 매핑 충돌

by ✱rJolJ✱ 2025. 4. 26.

🔴  에러 메시지

java.lang.IllegalStateException: Ambiguous handler methods mapped for '/recruit-apply/2'

 

🧐  발생한 상황

@GetMapping으로 요청 URL 경로를 설정하는 과정에서 발생

 

💥  원인 분석

두 개의 서로 다른 메소드가 같은 URL 패턴을 공유

public ResponseEntity findAllByRecruitId(int)
public ResponseEntity findAllnByUserId(int)

 

✅  해결 방법

요청 URL 경로가 충돌하지 않도록 명확히 분리해서 구분되도록 수정하여 해결!