gpt4 book ai didi

java - 如何过滤 LocalContainerEntityManagerFactoryBean 扫描的实体?

转载 作者:行者123 更新时间:2023-11-30 06:59:22 31 4
gpt4 key购买 nike

我使用 Spring Boot、Spring Data JPA 和 Hibernate。

我需要通过自定义注释过滤由 EntityManager 管理的实体。 LocalContainerEntityManagerFactoryBean 允许设置扫描的包列表,但过滤器似乎在 DefaultPersistenceUnitManager 中硬编码。

否则 LocalSessionFactoryBuilder(特定于 Hibernate)具有此功能(方法 setEntityTypeFilters)但不能与需要 EntityManagerFactory 的 Spring Data JPA 存储库一起使用>.

如何将实体过滤应用于 LocalContainerEntityManagerFactoryBean

最佳答案

我有一个类似的问题:我想“排除”一些实体,同时仍然使用 LocalContainerEntityManagerFactoryBean 提供的包扫描。就我而言,我想利用 spring 使用的 @Profile(...) 注释,因为仅当特定配置文件处于 Activity 状态时我才需要某些实体。我通过实现 PersistenceUnitPostProcessor 解决了这个问题,它删除了扫描器添加的类。它可能不是最优雅的解决方案,但它有效(Spring 4.1.2)。

public class ProfileAwarePersistenceUnitPostProcessor implements PersistenceUnitPostProcessor {

@Autowired
Environment environment;

/**
* Post process the persistence unit and remove Entity classes that require a specific spring profile
* if profile is not active.
*
* @param pui The persistence unit that was put together so far.
* @see org.springframework.orm.jpa.persistenceunit.PersistenceUnitPostProcessor#postProcessPersistenceUnitInfo(org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo)
*/
@Override
public void postProcessPersistenceUnitInfo(MutablePersistenceUnitInfo pui) {
// Check for null to be sure.
if (pui.getManagedClassNames() != null) {
Iterator<String> iterator = pui.getManagedClassNames().iterator();
while (iterator.hasNext()) {
String className = iterator.next();
try {
Class<?> entityClass = Class.forName(className);
Profile profileAnnotation = entityClass.getAnnotation(Profile.class);
if (profileAnnotation != null) {
String[] requiredProfiles = profileAnnotation.value();
if (!environment.acceptsProfiles(requiredProfiles)) {
Logging.debug("Removing class " + className + " from persistence unit since none of the required profiles is active "
+ StringUtils.join(", ", requiredProfiles));
iterator.remove();
}
}
} catch (ClassNotFoundException e) {
// Something must have gone wrong during scanning if class is suddenly not found anymore.
Logging.warn("Class " + className + " not found while post processing persistence unit.", e);
}
}
}
}
}

可以使用任何其他注释来代替配置文件。

关于java - 如何过滤 LocalContainerEntityManagerFactoryBean 扫描的实体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31604487/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com