I am a newbie to Hibernate. I am currently using Spring boot framework and trying to create database tables through hibernate.
I know the same question is asked before b
You need to add mysql
JDBC jar in your dependencies.
com.mysql.jdbc.Driver
.Fix your username and password property as
"connection.username" for database user
"connection.password" for database user password
Create mysql database. See this.
For SSL warning, modify your connection.url to include use ssl false. For example, jdbc:mysql://localhost:3306/
Modify your mysql dialect to org.hibernate.dialect.MySQLDialect
create-drop
instead of update
however do not use this option in production. You should create schema yourself and not do it via hibernate.