apifullpath 에러 수정(카멜케이스 -> 소문자)
This commit is contained in:
+1
-1
@@ -16,7 +16,7 @@ public class StandardMessageInfoLoader
|
|||||||
// jwhong 추가
|
// jwhong 추가
|
||||||
//Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath);
|
//Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath);
|
||||||
public Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath) {
|
public Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath) {
|
||||||
return repository.findByApiFullPath(apiFullPath);
|
return repository.findByApifullpath(apiFullPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -9,5 +9,5 @@ import java.util.Optional;
|
|||||||
interface StandardMessageInfoLoaderRepository
|
interface StandardMessageInfoLoaderRepository
|
||||||
extends DataLoaderRepository<StandardMessageInfo>, BaseRepository<StandardMessageInfo, String> {
|
extends DataLoaderRepository<StandardMessageInfo>, BaseRepository<StandardMessageInfo, String> {
|
||||||
// jwhong 추가
|
// jwhong 추가
|
||||||
Optional<StandardMessageInfo> findByApiFullPath(String apiFullPath);
|
Optional<StandardMessageInfo> findByApifullpath(String apiFullPath);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user