TL; DR
ใช่แล้ว. มีวิธีที่ดีกว่าในการ bootstrap Hibernate เช่นวิธีต่อไปนี้
บูตสแตรปไฮเบอร์เนต
Configuration
วัตถุดั้งเดิมนั้นทรงพลังน้อยกว่าการใช้งานBootstrapServiceRegistryBuilder
ซึ่งได้รับการแนะนำให้รู้จักตั้งแต่ Hibernate 4:
final BootstrapServiceRegistryBuilder bsrb = new BootstrapServiceRegistryBuilder()
.enableAutoClose();
Integrator integrator = integrator();
if (integrator != null) {
bsrb.applyIntegrator( integrator );
}
final BootstrapServiceRegistry bsr = bsrb.build();
final StandardServiceRegistry serviceRegistry =
new StandardServiceRegistryBuilder(bsr)
.applySettings(properties())
.build();
final MetadataSources metadataSources = new MetadataSources(serviceRegistry);
for (Class annotatedClass : entities()) {
metadataSources.addAnnotatedClass(annotatedClass);
}
String[] packages = packages();
if (packages != null) {
for (String annotatedPackage : packages) {
metadataSources.addPackage(annotatedPackage);
}
}
String[] resources = resources();
if (resources != null) {
for (String resource : resources) {
metadataSources.addResource(resource);
}
}
final MetadataBuilder metadataBuilder = metadataSources.getMetadataBuilder()
.enableNewIdentifierGeneratorSupport(true)
.applyImplicitNamingStrategy(ImplicitNamingStrategyLegacyJpaImpl.INSTANCE);
final List<Type> additionalTypes = additionalTypes();
if (additionalTypes != null) {
additionalTypes.stream().forEach(type -> {
metadataBuilder.applyTypes((typeContributions, sr) -> {
if(type instanceof BasicType) {
typeContributions.contributeType((BasicType) type);
} else if (type instanceof UserType ){
typeContributions.contributeType((UserType) type);
} else if (type instanceof CompositeUserType) {
typeContributions.contributeType((CompositeUserType) type);
}
});
});
}
additionalMetadata(metadataBuilder);
MetadataImplementor metadata = (MetadataImplementor) metadataBuilder.build();
final SessionFactoryBuilder sfb = metadata.getSessionFactoryBuilder();
Interceptor interceptor = interceptor();
if(interceptor != null) {
sfb.applyInterceptor(interceptor);
}
SessionFactory sessionFactory = sfb.build();
JPA bootstrap
นอกจากนี้คุณยังสามารถบูตไฮเบอร์เนตโดยใช้ JPA:
PersistenceUnitInfo persistenceUnitInfo = persistenceUnitInfo(getClass().getSimpleName());
Map configuration = properties();
Interceptor interceptor = interceptor();
if (interceptor != null) {
configuration.put(AvailableSettings.INTERCEPTOR, interceptor);
}
Integrator integrator = integrator();
if (integrator != null) {
configuration.put(
"hibernate.integrator_provider",
(IntegratorProvider) () -> Collections.singletonList(integrator));
}
EntityManagerFactoryBuilderImpl entityManagerFactoryBuilder =
new EntityManagerFactoryBuilderImpl(
new PersistenceUnitInfoDescriptor(persistenceUnitInfo),
configuration
);
EntityManagerFactory entityManagerFactory = entityManagerFactoryBuilder.build();
วิธีนี้คุณจะสร้างแทนEntityManagerFactory
SessionFactory
อย่างไรก็ตามการSessionFactory
ขยายEntityManagerFactory, so the actual object that's built is a
SessionFactoryImpl` เกินไป
ข้อสรุป
ทั้งสองวิธี bootstrapping มีผลต่อพฤติกรรมไฮเบอร์เนต เมื่อใช้ bootstrap แบบดั้งเดิม Hibernate จะทำงานในโหมดดั้งเดิมซึ่งถือกำเนิด JPA
เมื่อทำการบูตสแตรปโดยใช้ JPA ไฮเบอร์เนตจะทำงานตามข้อกำหนด JPA
มีความแตกต่างหลายประการระหว่างสองโหมดนี้:
สำหรับรายละเอียดเพิ่มเติมเกี่ยวกับความแตกต่างเหล่านี้ตรวจสอบJpaCompliance
ชั้นเรียน