Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
mySql JUnit 테스트 class를 만들어서 테스트 중 해당 에러 발생.
jdbc 드라이버는 2가지 종류.
1. com.mysql.jdbc.Driver
2. com.mysql.cj.jdbc.Driver
1번은 deprecated이므로 2번을 써야함.
'프레임워크 > SpringBoot' 카테고리의 다른 글
스프링부트 오류. Driver oracle.jdbc.driver.OracleDriver claims to not accept jdbcUrl (1) | 2021.07.30 |
---|---|
Class Not Found Exception : oracle.jdbc.driver.OracleDriver (0) | 2021.07.28 |
Spring Web 프로젝트 설정 오류(gradle) (0) | 2021.06.15 |
Spring Junit4 삽질 (0) | 2021.04.23 |
Spring Framework 서비스 트랜잭션 관리 (0) | 2021.02.09 |