Notice
Recent Posts
Recent Comments
Link
05-21 15:23
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 마크다운 기본문법
- SpringJUnit4ClassRunner
- Class<SpringJUnit4ClassRunner> cannot be resolved to a type
- spring자바설정
- 정보처리기사
- HTTP 상태 415 – 지원되지 않는 Media Type
- rest방식
- 이클립스
- 한글깨짐
- ejected-non-fast-forward
- jdbc연결테스트코드
- git push
- 오라클
- 취성패
- git
- 마크다운 테이블
- @Setter(onMethod_ = @Autowired) Error
- 마크다운 리스트
- java.lang.NoClassDefFoundError:org/springframework/core/annotation/MergedAnnotations
- lombok.jar
- jdbc연결확인
- mysql한글깨짐
- Oracle join
- oracle
- git오류
- 오라클연습문제
- SQL
- 스프링
- 마크다운 링크
- java
Archives
- Today
- Total
목록jdbc연결확인 (1)
study-project
JDBC 연결확인을 위한 테스트 코드
package org.zerock.persistence; import static org.junit.Assert.fail; import java.sql.Connection; import java.sql.DriverManager; import org.junit.Test; import lombok.extern.log4j.Log4j; @Log4j public class JDBCTests { static { try { Class.forName("oracle.jdbc.driver.OracleDriver"); } catch (Exception e) { e.printStackTrace(); } } @Test public void testConnection() { try(Connection con = DriverMan..
TIL/Spring
2021. 2. 17. 19:20