Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 76 章 Spring Data with MySQL

目录

76.1. 选择数据库表引擎
76.2. 声明实体
76.2.1. @Entity 声明实体
76.2.2. @Table 定义表名
76.2.3. @Id 定义主键
76.2.4. @Column 定义字段:
76.2.5. 非数据库字段
76.2.6. @Lob 注解属性将被持久化为 Blog 或 Clob 类型
76.2.7. @NotNull 不能为空声明
76.2.8. @Temporal 日期定义
76.2.9. 创建日期
76.2.10. @DateTimeFormat 处理日期时间格式
76.2.11. Enum 枚举数据类型
76.2.12. SET 数据结构
76.2.13. JSON 数据类型
76.2.14. 嵌入
76.2.15. @JsonIgnore
76.2.16. @EnableJpaAuditing 开启 JPA 审计功能
76.2.17. 注释 @Comment
76.2.18. @Pattern 数据匹配
76.2.19. 实体继承
76.3. 映射集合属性
76.3.1. List 集合
76.3.2. 数组集合
76.3.3. Map 集合
76.3.4. Set 集合
76.3.5. 外键名称
76.3.6. 集合表子查询
76.4. 外键
76.4.1. @JoinColumn
76.4.2. @OneToOne
76.4.3. OneToMany 一对多
76.4.4. ManyToMany 多对多
76.4.5. 外键级联删除
76.4.6. 外键级联操作
76.4.7. @JoinTable
76.4.8. @OrderBy
76.4.9. @JsonIgnoreProperties
76.5. 索引
76.5.1. 普通索引
76.5.2. 组合索引
76.5.3. 唯一索引
76.6. Repository
76.6.1. JpaRepository
76.6.2. CrudRepository
76.6.3. PagingAndSortingRepository
76.6.4. findByXXX
76.6.5. count 操作
76.6.6. delete 删除操作
76.6.7. IsNull
76.6.8. In/NotIn
76.6.9. TRUE / FALSE
76.6.10. OrderBy
76.6.11. GreaterThan
76.6.12. Sort 排序操作操作
76.6.13. Pageable 翻页操作
76.6.14. @DynamicInsert 与 @DynamicUpdate
76.6.15. 继承已存在的 Repository
76.6.16. 自定义返回字段
76.7. TransactionTemplate
76.8. JPQL @Query
76.8.1. @Modifying 更新/删除
76.8.2. 事务 @Transactional
76.8.3. 参数传递
76.8.4. 原生 SQL 操作
76.8.5. @Query 与 Pageagble
76.8.6. 返回指定字段
76.8.7. 返回指定的模型
76.8.8. @Query 与 @ManyToOne
76.8.9. Collection
76.8.10. Sort
76.8.11. 更新数据,返回值
76.8.12. 锁 @Lock
76.9. FAQ 常见问题
76.9.1. Could not write JSON: failed to lazily initialize a collection of role
76.9.2. Query did not return a unique result: 2 results were returned
76.9.3. Executing an update/delete query

76.1. 选择数据库表引擎

正常创建表会使用数据库默认引擎,有时数据库默认引擎并不是我们需要的,通过下面配置可以指定表引擎

			
# Spring boot 1.x.x
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect

# Spring boot 2.0.2
spring.jpa.hibernate.use-new-id-generator-mappings=true
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect