bugfix - 스케줄러 목록 조회시 유니크 오류 수정
This commit is contained in:
@@ -59,3 +59,8 @@ gradle build -x test -Pprofile=weblogic
|
||||
```
|
||||
|
||||
- -Pprofile=weblogic 사용시 weblogic-web.xml 을 web.xml 로 사용 (DefaultServlet 이슈)
|
||||
|
||||
|
||||
## 광주은행 참고 사항
|
||||
### PORTAL Parameter
|
||||
- deploy.prod_use_proxy = N (개발/운영 망 간 연동 없음)
|
||||
|
||||
@@ -38,7 +38,8 @@ public class JobHistoryService extends AbstractEMSDataSerivce<JobHistory, String
|
||||
.select(qJobHistory.status)
|
||||
.from(qJobHistory)
|
||||
.where(qJobHistory.endDate.eq(maxEndDateQuery))
|
||||
.fetchOne();
|
||||
.fetchFirst(); // unique 에러 발생 대응
|
||||
//.fetchOne();
|
||||
}
|
||||
|
||||
public void updateStatus(String jobName, String startDate, String endDate, String status) throws Exception {
|
||||
|
||||
Reference in New Issue
Block a user