Loading class `com.mysql.jdbc.Driver'. This is

2020-05-19 02:08发布

This is the Warning im getting in console, Im confused with this warning

Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

标签: mysql jdbc
19条回答
神经病院院长
2楼-- · 2020-05-19 02:59

Change driver property in your ORM config file from

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

to

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

This will resolve the warning :-)

查看更多
登录 后发表回答