모던 대시보드 패치
- ApexCharts 기반 실시간 모니터링 대시보드 - 어댑터/배치/서버/소켓/트랜잭션 모니터링 컴포넌트 - 처리량 계산 및 데이터 매핑 서비스
This commit is contained in:
@@ -233,4 +233,16 @@ public class AdapterGroupService extends AbstractDataService<AdapterGroup, Strin
|
||||
|
||||
return query.fetch();
|
||||
}
|
||||
|
||||
public List<AdapterGroup> findByAdptrinsticodeNotEmpty() {
|
||||
QAdapterGroup qAdapterGroup = QAdapterGroup.adapterGroup;
|
||||
|
||||
JPAQuery<AdapterGroup> query = getJPAQueryFactory()
|
||||
.selectFrom(qAdapterGroup)
|
||||
.where(qAdapterGroup.adptrinsticode.isNotNull()
|
||||
.and(qAdapterGroup.adptrinsticode.ne("")))
|
||||
.orderBy(qAdapterGroup.adptrbzwkgroupname.asc());
|
||||
|
||||
return query.fetch();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user