对于最新的稳定版本,请使用 Spring Data Commons 3.3.4spring-doc.cn

对于最新的稳定版本,请使用 Spring Data Commons 3.3.4spring-doc.cn

下表描述了 Spring Data 提供的用于检测实体是否为新实体的策略:spring-doc.cn

表 1.用于检测实体是否为 Spring Data 中的新实体的选项

@Id-Property inspection(默认)spring-doc.cn

默认情况下, Spring Data 检查给定实体的 identifier 属性。 如果 identifier 属性是 or if 是基元类型,则假定该实体是新的。 否则,将假定它不是 new。null0spring-doc.cn

@Version-物业检查spring-doc.cn

如果存在带注释的属性,则 和 ,或者如果是基元类型的 version 属性,则该实体被视为新实体。 如果 version 属性存在但具有不同的值,则认为该实体不是新实体。 如果不存在version属性,则 Spring Data 将回退到对标识符属性的检查。@Versionnull0spring-doc.cn

实施Persistablespring-doc.cn

如果实体实现,则 Spring Data 会将新检测委托给实体的方法。 有关详细信息,请参阅 JavadocPersistableisNew(…)spring-doc.cn

注意:如果您使用 AccessType.PROPERTY,将检测并保留 Persistable 的属性。 为避免这种情况,请使用 @Transientspring-doc.cn

提供自定义实现EntityInformationspring-doc.cn

您可以通过创建特定于模块的 repository factory 的子类并覆盖该方法来自定义 repository base 实现中使用的抽象。 然后,您必须将特定于模块的存储库工厂的自定义实现注册为 Spring Bean。 请注意,这很少是必需的。EntityInformationgetEntityInformation(…)spring-doc.cn