本文整理汇总了Java中org.springframework.orm.hibernate5.LocalSessionFactoryBean.setMappingLocations方法的典型用法代码示例。如果您正苦于以下问题:Java LocalSessionFactoryBean.setMappingLocations方法的具体用法?Java LocalSessionFactoryBean.setMappingLocations怎么用?Java LocalSessionFactoryBean.setMappingLocations使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.orm.hibernate5.LocalSessionFactoryBean
的用法示例。
在下文中一共展示了LocalSessionFactoryBean.setMappingLocations方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createSessionFactoryBean
import org.springframework.orm.hibernate5.LocalSessionFactoryBean; //导入方法依赖的package包/类
protected LocalSessionFactoryBean createSessionFactoryBean() {
LocalSessionFactoryBean factoryBean = new LocalSessionFactoryBean();
factoryBean.setDataSource(this.dataSourceConfig.dataSource());
if (StringUtil.isEmpty(this.propertiesConfig.hibernateDialect())) {
throw new IllegalStateException("hibernateDialect is required");
}
factoryBean.getHibernateProperties().setProperty(AvailableSettings.DIALECT,
this.propertiesConfig.hibernateDialect());
if (!ArrayUtil.isEmpty(this.propertiesConfig.hibernateMappingLocations())) {
factoryBean
.setMappingLocations(this.propertiesConfig.hibernateMappingLocations());
}
return factoryBean;
}
示例2: createSessionFactoryBean
import org.springframework.orm.hibernate5.LocalSessionFactoryBean; //导入方法依赖的package包/类
protected LocalSessionFactoryBean createSessionFactoryBean() {
LocalSessionFactoryBean factoryBean = new LocalSessionFactoryBean();
factoryBean.setDataSource(this.dataSourceConfig.dataSource());
if (StringUtil.isEmpty(this.propertiesConfig.hibernateDialect())) {
throw new IllegalStateException("hibernateDialect is required");
}
factoryBean.getHibernateProperties().setProperty(AvailableSettings.DIALECT,
this.propertiesConfig.hibernateDialect());
if (!ArrayUtil.isEmpty(this.propertiesConfig.hibernateMappingLocations())) {
factoryBean
.setMappingLocations(this.propertiesConfig.hibernateMappingLocations());
}
// configure for multitenancy
if (!(this.dataSourceConfig.dataSource() instanceof MultiTenantDataSource)) {
throw new IllegalStateException("a MultiTenantDataSource is required");
}
factoryBean.getHibernateProperties().setProperty(AvailableSettings.MULTI_TENANT,
MultiTenancyStrategy.DATABASE.toString());
factoryBean.setMultiTenantConnectionProvider(
new MultiTenantConnectionProviderImpl((MultiTenantDataSource) this.dataSourceConfig.dataSource()));
factoryBean.setCurrentTenantIdentifierResolver(
new CurrentTenantIdentifierResolverImpl(contextConfig.tenantResolver()));
// update guard
factoryBean.setEntityInterceptor(new MultiTenantEntityInterceptor(contextConfig.tenantResolver()));
return factoryBean;
}