jpa-patterns
Spring Boot 中用于实体设计、关联关系、查询优化、事务、审计、索引、分页和连接池的 JPA/Hibernate 模式。
它会碰到什么
扫了多少1 个文本文件,3 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
JPA/Hibernate 模式
用于 Spring Boot 中的数据建模、存储库(Repository)和性能调优。
实体设计 (Entity Design)
@Entity
@Table(name = "markets", indexes = {
@Index(name = "idx_markets_slug", columnList = "slug", unique = true)
})
@EntityListeners(AuditingEntityListener.class)
public class MarketEntity {
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(nullable = false, length = 200)
private String name;
@Column(nullable = false, unique = true, length = 120)
private String slug;
@Enumerated(EnumType.STRING)
private MarketStatus status = MarketStatus.ACTIVE;
@CreatedDate private Instant createdAt;
@LastModifiedDate private Instant updatedAt;
}
启用审计 (Auditing):
@Configuration
@EnableJpaAuditing
class JpaConfig {}
关联关系与 N+1 问题预防
@OneToMany(mappedBy = "market", cascade = CascadeType.ALL, orphanRemoval = true)
private List<PositionEntity> positions = new ArrayList<>();
- 默认使用延迟加载(Lazy Loading)。根据需要,在查询中使用
JOIN FETCH。 - 集合属性应避免使用
EAGER加载,在读取路径中优先使用 DTO 投影(Projection)。
@Query("select m from MarketEntity m left join fetch m.positions where m.id = :id")
Optional<MarketEntity> findWithPositions(@Param("id") Long id);
存储库模式 (Repository Pattern)
public interface MarketRepository extends JpaRepository<MarketEntity, Long> {
Optional<MarketEntity> findBySlug(String slug);
@Query("select m from MarketEntity m where m.status = :status")
Page<MarketEntity> findByStatus(@Param("status") MarketStatus status, Pageable pageable);
}
- 对于轻量级查询,请使用投影(Projection):
public interface MarketSummary {
Long getId();
String getName();
MarketStatus getStatus();
}
Page<MarketSummary> findAllBy(Pageable pageable);
事务 (Transactions)
- 在服务层(Service)方法上添加
@Transactional注解。 - 使用
@Transactional(readOnly = true)优化只读路径。 - 谨慎选择事务传播(Propagation)行为。避免长时间运行的事务。
@Transactional
public Market updateStatus(Long id, MarketStatus status) {
MarketEntity entity = repo.findById(id)
.orElseThrow(() -> new EntityNotFoundException("Market"));
entity.setStatus(status);
return Market.from(entity);
}
分页 (Pagination)
PageRequest page = PageRequest.of(pageNumber, pageSize, Sort.by("createdAt").descending());
Page<MarketEntity> markets = repo.findByStatus(MarketStatus.ACTIVE, page);
对于类似游标(Cursor)的分页,请在 JPQL 排序中包含 id > :lastId。
索引创建与性能优化
- 为常用过滤器(如
status、slug、外键)添加索引。 - 使用符合查询模式的复合索引(例如
status, created_at)。 - 避免使用
select *,仅投影必要的列。 - 利用
saveAll和hibernate.jdbc.batch_size进行批量写入。
连接池 (Connection Pooling - HikariCP)
推荐属性:
spring.datasource.hikari.maximum-pool-size=20
spring.datasource.hikari.minimum-idle=5
spring.datasource.hikari.connection-timeout=30000
spring.datasource.hikari.validation-timeout=5000
对于 PostgreSQL 的 LOB 处理,请添加以下内容:
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
缓存 (Caching)
- 一级缓存(First-level Cache)是基于 EntityManager 的。不要在事务之间持有实体。
- 对于读取密集型实体,请谨慎考虑二级缓存(Second-level Cache)。验证淘汰策略(Eviction Strategy)。
数据库迁移 (Migration)
- 使用 Flyway 或 Liquibase。不要在生产环境中依赖 Hibernate 的自动 DDL。
- 保持迁移脚本的幂等性(Idempotent)和增量性。不要在未规划的情况下删除列。
数据访问测试
- 优先使用配合 Testcontainers 的
@DataJpaTest,以真实反映生产环境。 - 通过日志断言 SQL 效率:将
logging.level.org.hibernate.SQL设置为DEBUG,将logging.level.org.hibernate.orm.jdbc.bind设置为TRACE以查看参数值。
注意:保持实体轻量化,确保查询意图明确,并缩短事务时长。通过抓取策略(Fetch Strategy)和投影(Projection)防止 N+1 问题,并为读/写路径创建索引。
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
星标★ 1,946
本站分层T1
该仓技能数185
原文件路径
docs/ja-JP/skills/jpa-patterns/SKILL.md同一个仓库里的其他技能
同名技能的其他版本
有 3 个不同仓库或目录里都有叫 jpa-patterns 的技能。它们内容并不相同,别混用:
- xu-xiang/everything-claude-code-zh — Spring Boot中的JPA/Hibernate模式,用于实体设计、关系处理、查询优化、事务管理、审计、索引、分页和连接池。
- xu-xiang/everything-claude-code-zh — JPA/Hibernate 模式,涵盖 Spring Boot 中的实体设计、关系、查询优化、事务、审计、索引、分页和连接池。