mysql的依赖
我这里用的是idea,选择Spring initializr创建springboot项目`。
当你勾选mysql模块,pom.xml中就会有如下依赖:
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
配置数据库基本信息
这里我是直接放在application.properties
spring.datasource.username=用户名
spring.datasource.password=密码
spring.datasource.url=jdbc:mysql://localhost:3306/数据库名?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
当你完成实体类的编写,绑定相应的数据库,表就会自己创建好。