OpenAPI Spec·포탈 노출 필터 추가 - EAIMessage 검색 조건 추가 - API Group 팝업 검색 개선 - JSP 체크박스 연동 처리
eapim-portal CI (from elink-portal-common) / build (push) Has been cancelled
eapim-portal CI (from elink-portal-common) / build (push) Has been cancelled
This commit is contained in:
@@ -34,4 +34,13 @@ public interface ApiSpecInfoRepository extends JpaRepository<ApiSpecInfo, String
|
||||
*/
|
||||
@Query("SELECT a.apiId FROM ApiSpecInfo a WHERE a.apiId IN :apiIds")
|
||||
List<String> findApiIdsIn(@Param("apiIds") Collection<String> apiIds);
|
||||
|
||||
/**
|
||||
* 스펙이 등록된 전체 API ID.
|
||||
*
|
||||
* <p>{@link #findApiIdsIn} 과 같은 이유로 존재한다 - 다른 스키마(TSEAIHE01·API_GROUP)의 목록을
|
||||
* 스펙 유무로 거를 때, 조인 대신 ID 집합을 받아 호출부에서 걸러야 ORA-00942 를 피한다.</p>
|
||||
*/
|
||||
@Query("SELECT a.apiId FROM ApiSpecInfo a")
|
||||
List<String> findAllApiIds();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user