mysql은 기본 8시간이 지나면 연결이 끊긴다고 한다.
연결이 끊기질 않도록 아래 추가 필요함.
// spring context.xml 파일에 추가
<property name="validationQuery" value="select 1"/>
<property name="testWhileIdle" value="true"/>
<property name="timeBetweenEvictionRunsMillis" value="10800000"/> // 3600000 : 1시간
감사합니다.
'Tip' 카테고리의 다른 글
[mariadb] auto_increment 초기화 (0) | 2020.04.02 |
---|---|
Apache POI excel download 엑셀 다운로드 (0) | 2020.04.02 |
[spring] security 적용시 iframe 안될때 (0) | 2020.04.02 |
[spring] LG 전자결제연동 returnUrl 구현 (0) | 2020.04.02 |
[chart.js] 통화 3자리 콤마-수정(2021.02.22) (0) | 2020.04.02 |