본문 바로가기
Error

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.

by pavi03 2022. 3. 28.

[Spring Framework]

 

com.mysql.jdbc.Driver -> com.mysql.cj.jdbc.Driver

 

 

applicationContext.xml

 

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">

<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>

<property name="url" value="jdbc:mysql://127.0.0.1:3306/springdb?allowPublicKeyRetrieval=true&amp;useUnicode-true&amp;characterEncoding=utf8&amp;useSSL=false&amp;serverTimezone=UTC"/>

<property name="username" value="root"/>

<property name="password" value="password"/>

<property name="maxActive" value="5"/>

</bean>