apifullpath 에러 수정(카멜케이스 -> 소문자)

This commit is contained in:
daekuk
2025-12-08 15:12:14 +09:00
parent f99cb15ccf
commit ce1fe142ff
2 changed files with 2 additions and 2 deletions
@@ -16,7 +16,7 @@ public class StandardMessageInfoLoader
// jwhong 추가
//Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath);
public Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath) {
return repository.findByApiFullPath(apiFullPath);
return repository.findByApifullpath(apiFullPath);
}
}
@@ -9,5 +9,5 @@ import java.util.Optional;
interface StandardMessageInfoLoaderRepository
extends DataLoaderRepository<StandardMessageInfo>, BaseRepository<StandardMessageInfo, String> {
// jwhong 추가
Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath);
Optional<StandardMessageInfo> findByApifullpath(String apiFullPath);
}