일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- jpa entity자동
- spring boot
- 도커
- ollama langflow
- docker
- docker 설치
- header setting
- custom valid
- memcached
- Java
- 리눅스
- JPA
- spring
- java8
- 초기 구축
- CentOS6
- java9
- 헤더 설정
- Next.js 14
- 초기 세팅
- SpringBoot
- MySQL
- NextJS
- JavaScript
- swagger
- generate pojos
- generate entity
- React
- jvm
- dto valid
- Today
- Total
개발자의 길
(mysql)DB 커넥션(connection)이 안끊길때 웹 소스 확인용 본문
가끔 connection 풀이 나서 웹이 죽을때가 있다.
프레임워크를 안쓰고 생 jsp (model 1) 방식으로 개발하면 실수로 finally에 connection close를 잊어먹고 안쓰는 경우가 있어서, 프로젝트를 죽이는 사태가 발생한다.
그때를 위해서 페이지 마다 어디에서 connection이 올라가는 지 확인 할려고 만들었다
<%@ page language="java" contentType="text/html; charset=utf-8" %> <table> <tr> <td colspan='4' align='center'><b><%=dbname%></b> DataSource</td> </tr> <tr> <td height='24' align='center' alt='connections that are processing'># Active Connections</td> <td height='24' align='center' alt='total size of pool'>Maximum Active Connections</td> <td height='24' align='center' alt='connections that are idle in the pool'># of Idle Connections</td> <td height='24' align='center'>Maxium Wait period before timeout</td> </tr> <tr> <td align='right'><%=fontcolor%><%=bdsNumActive%></font></td> <td align='right'><%=bdsMaxActive%></td> <td align='right'><%=bdsNumIdle%></td> <td align='right'><%=bdsMaxWait%></td> </tr> </table>
<% |
'3. DB' 카테고리의 다른 글
[MYSQL] general_log 및 logrorate 관리 (0) | 2020.10.19 |
---|---|
[MYSQL] 유닉스시간(unixtime) - 현재 시간 형식 서로 변환하기 (0) | 2020.09.01 |
MySQL 정규식(regexp)검사를 통한 숫자,특수문자 체크 (0) | 2018.11.28 |
Mysql federated (oracle dblink 와 같은 기능) - 물리적 다른 DB 연결 (0) | 2018.11.02 |
[mysql] 함수 모음 (2) | 2016.06.10 |
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.