gpt4 book ai didi

java - Hibernate SessionFactory 重启 | Spring

转载 作者:搜寻专家 更新时间:2023-11-01 03:25:50 25 4
gpt4 key购买 nike

我的要求如下:

我需要使用从外部获取的新 HBM 文件在我的 Spring Web 应用程序中频繁重启(或重建) hibernate session 工厂。

目前我的 Sessionfactory 类如下所示,使用 SessionFactory 代理来拦截“OpenSession”调用。

我正在检查重启和重建 sessionFactory 的条件。

我的问题是,在并发环境中,其他事务中的其他用户在这次重启期间受到影响。

有没有办法通过检查所有事务和打开的 session 来重启,并在所有其他完成后重建 session 工厂?

或存在任何其他解决方案。

代码:

public class DataStoreSessionFactory extends LocalSessionFactoryBean
{


private boolean restartFactory = false;



@Override
protected void postProcessConfiguration(Configuration config) throws HibernateException
{
super.postProcessConfiguration(config);
updateHBMList(config);
}


private void updateHBMList(final Configuration config)
{

config.addXML(modelRegistry.generateMapping());
}

@Override
public SessionFactory getObject()
{

Object obj = super.getObject();

/*
* Invocation handler for the proxy
*/
SessionFactoryProxy proxy = new SessionFactoryProxy(this, (SessionFactory) obj);

/**
* All the methods invoked on the returned session factory object will pass through this proxy's invocation
* handler
*/
SessionFactory sessionFactory = (SessionFactory) Proxy.newProxyInstance(getClass().getClassLoader(),
new Class[] { SessionFactory.class },
proxy);
return sessionFactory;
}

static class SessionFactoryProxy implements InvocationHandler
{


private SessionFactory sessionFactory;

private LocalSessionFactoryBean factoryBean;

public SessionFactoryProxy(LocalSessionFactoryBean factoryBean, SessionFactory sessionFactory)
{
this.factoryBean = factoryBean;
this.sessionFactory = sessionFactory;
}

public Object invoke(Object proxy, Method method, Object[] args) throws Throwable
{
/**
* Only if the method invoked is openSession - check if the session factory should be restarted, and only then
* invoke the requested method
*/
if (method.getName().equals("openSession"))
{
restartSessionFactoryIfNecessary();
}
return method.invoke(sessionFactory, args);
}

private void restartSessionFactoryIfNecessary()
{
restartSessionFactory();
/*if (((DataStoreSessionFactory) factoryBean).isRestartFactory())
{
restartSessionFactory();
}*/
}

private synchronized void restartSessionFactory()
{
log.info("Restarting session...");
factoryBean.destroy();
try
{
factoryBean.afterPropertiesSet();
sessionFactory = factoryBean.getObject();
}
catch (Exception e)
{
log.error("Error while restarting session: " + e.getMessage());
throw new RuntimeException(e);
}
}
}

谢谢,阿帕萨米

最佳答案

您可以通过 SessionFactoryUtils 来判断 session 工厂中是否正在发生事务,然后决定是否重启 session 工厂:您需要在文件中导入--> org.springframework.orm.hibernate.SessionFactoryUtils,并使用以下 API。

    static boolean  hasTransactionalSession(SessionFactory sessionFactory); 

以上API返回的是当前线程是否有事务性的Hibernate Session,也就是Spring的事务设施绑定(bind)到当前线程的Session。另外还有一个API,以防万一需要检查一个session是否存在当前 session 工厂中的事务:

static boolean isSessionTransactional(Session session,SessionFactory sessionFactory);

上述 API 返回给定的特定 Hibernate Session 是否是事务性的,即是否通过 Spring 的事务设施绑定(bind)到当前线程。

关于java - Hibernate SessionFactory 重启 | Spring ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13987720/

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