我需要在Spring应用程序中使用orm.xml文件,我通过执行以下操作创建bean:
@Bean
public LocalContainerEntityManagerFactoryBean entityManagerFactory() {
LocalContainerEntityManagerFactoryBean bean = new LocalContainerEntityManagerFactoryBean();
bean.setPackagesToScan("org.mitre");
bean.setPersistenceProviderClass(PersistenceProvider.class);
bean.setDataSource(hikariDataSource);
bean.setJpaVendorAdapter(jpaAdapter);
Map<String, String> jpaProperties = new HashMap<>();
jpaProperties.put("eclipselink.weaving", "false");
jpaProperties.put("eclipselink.logging.level", "INFO");
jpaProperties.put("eclipselink.logging.level.sql", "INFO");
jpaProperties.put("eclipselink.cache.shared.default", "false");
bean.setJpaPropertyMap(jpaProperties);
bean.setPersistenceUnitName("defaultPersistenceUnit");
switch (databaseType){
case oracle: bean.setMappingResources("db/oracle/entity-mappings_oracle.xml"); break;
case mssql: bean.setMappingResources("db/mssql/entity-mappings_mssql.xml"); break;
}
return bean;
}
在底部,您可以看到我通过提供类路径上资源的路径来设置映射资源。但是在我的orm.xml中我有以下内容:
<entity-mappings xmlns="http://xmlns.jcp.org/xml/ns/persistence/orm"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence/orm http://xmlns.jcp.org/xml/ns/persistence/orm_2_0.xsd"
version="2.1">
<persistence-unit-metadata>
<persistence-unit-defaults>
<schema>${some.schema.name}</schema>
</persistence-unit-defaults>
</persistence-unit-metadata>
</entity-mappings>
我需要Spring来扩展该属性,因为模式名称是可配置的。
一种可能性是获取资源,自己查找和替换属性,然后将其输出到文件系统。这里的问题是setMappingResources获取资源的字符串路径,因此它不能在文件系统上。
另一种可能性是使用ByteArrayResource创建内存资源,如下所示:
case mssql: bean.setMappingResources("db/mssql/entity-mappings_mssql.xml");
String localResource = IOUtils.readFileToString(mssqlMappings.getFile(), Charset.defaultCharset());
Resource resource = new ByteArrayResource(localResource.replaceAll("${some.schema.name}" ,dbName).getBytes());
bean.setMappingResources(resource.getFile().getPath());
break;
然而,这不起作用,因为映射资源需要ByteArrayResource无法提供的路径。
有没有我可以在Java Config中复制orm.xml,我可以在那里注入属性?我对其他方法的建议持开放态度。
由于
答案 0 :(得分:2)
如果要以编程方式更改架构,可以使用SessionCustomizer执行此操作,并将其添加到jpa属性jpaProperties.put(PersistenceUnitProperties.SESSION_CUSTOMIZER, YourSessionCustomizer);
在YourSessionCustomizer中,您可以在自定义方法
session.getLogin().setTableQualifier("your_schema")