Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Proxy
- springdatajpa
- 인프런
- 스프링
- http
- kotlin
- 김영한
- Spring Boot
- Servlet
- jpa
- 백준
- transaction
- Greedy
- Exception
- spring
- 자바
- AOP
- db
- Android
- java
- QueryDSL
- 스프링 핵심 원리
- 그리디
- JPQL
- Thymeleaf
- 스프링 핵심 기능
- 알고리즘
- pointcut
- SpringBoot
- JDBC
Archives
- Today
- Total
목록Spring0000000000000000 (1)
개발자되기 프로젝트
DataSource 예제2-커넥션 풀
이번에는 DataSource 를 통해 커넥션 풀을 사용해보자. @Test void dataSourceConnectionPool() throws SQLException, InterruptedException { //커넥션 풀링 HikariDataSource dataSource = new HikariDataSource(); dataSource.setJdbcUrl(URL); dataSource.setUsername(USERNAME); dataSource.setPassword(PASSWORD); dataSource.setMaximumPoolSize(10); dataSource.setPoolName("MyPool"); userDataSource(dataSource); Thread.sleep(1000); } pri..
인프런/[인프런] 스프링 DB 1편 - 데이터 접근 핵심 원리
2022. 5. 29. 01:09