affaan-m-jpa-patterns
Installation
SKILL.md
JPA/Hibernate 模式
用于 Spring Boot 中的数据建模、存储库和性能调优。
实体设计
@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;