参考
快速开始
- 在Spring Boot中添加相关依赖
1
2
3
4
5
6
7
8
9
10
11
12<!-- Spring Boot JPA依赖 提供对数据库操作的一套标准-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- 根据使用的数据库,添加对应的依赖 -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency> - 配置数据库连接
1
2
3
4
5spring:
datasource:
url: jdbc:mysql://xxx.xxx.xxx.xxx:3306/spring
username: spring
password: spring