1.jdbc的开发场景
导入数据库jdbc的开发场景:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</dependency>
点进去spring-boot-starter-data-jdbc
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<version>2.4.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jdbc</artifactId>
<version>2.1.8</version>
<scope>compile</scope>
</dependency>
spring-data-jdbc是执行jdbc操作的,点进去spring-boot-starter-jdbc包含:
因为不知道你具体使用哪个数据库所以没有自动导入数据库的驱动,接下来导入mysql的数据库驱动:
<dependency