spring boot数据库操作汇总

Posted hustdc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot数据库操作汇总相关的知识,希望对你有一定的参考价值。

1 关于orm

orm即object relational mapping,对象关系映射,即将数据库中的表映射成对象。

常用的orm有以下:

mybatis

spring jdbc template

hibernate

spring data jpa

如果在spring boot项目中用的是mybatis的话,引入依赖mybatis-spring-boot-starter;

如果在spring boot项目中用的是spring jdbc template的话,引入的依赖spring-boot-starter-jdbc;

如果在spring boot项目中用的是spring data jpa的话,引入的依赖是spring-boot-starter-data-jdbc;

如果在spring boot项目中用的是hibernate的话,引入的依赖是spring-boot-starter-data-jpa。

 

2 关于数据库的驱动

真正的数据库操作需要使用数据库驱动,mysql和postgresql都有直接的驱动。

mysql的驱动依赖是mysql-connector-java;

 

orm的操作是建立在数据库驱动的基础之上的。

 

 

以上是关于spring boot数据库操作汇总的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 实用MyBatis做数据库操作

Spring boot操作数据库

spring boot + mybaits 操作数据库

spring-boot数据库操作(spring-data-jpa)

2小时学会Spring Boot学习 - 数据库操作

Spring boot MyBatis基本操作