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

Posted

tags:

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

1、引入两个依赖项

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
   <groupId>mysql</groupId>
   <artifactId>mysql-connector-java</artifactId>
</dependency>

2、修改数据源配置

spring:
  profiles:
    active: dev
  jpa:
    hibernate:
      ddl-auto: update
    show-sql: true
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/dbgirl
    username: root
    password: aaaaaa

3、实体类用到了三个注解@Entity  @Id  @GeneratedValue

4、Repository集成JPA接口  org.springframework.data.jpa.repository.JpaRepository

5、根据主键外的其他字段查询,扩展查询方法,命名方式 findBy + 字段名

6、事务处理。在方法上使用注解@Transactional实现事务。

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

spring-boot aop 增删改操作日志 实现

Spring-Boot 使用 Jedis 操作 Redis

spring-boot | 整合通用Mabatis 分页插件PageHelper

Spring Boot 实用MyBatis做数据库操作

spring-boot+mybatis+ehcache实现快速查询

关于快速创建一个spring-boot项目的操作,简单的spring运行方式的总结,spring注解的简单理解。