【南阳源码路灯】【dubbo源码解读】【bootstrap源码实例】springsession源码

2024-12-29 16:13:19 来源:网狐完整有源码 分类:休闲

1.SpringMVC4+Hibernate4运行报错Could not obtain transaction-synchronized Session for current thread
2.使用ssh一直找不到session,报错not found session in current thread

springsession源码

SpringMVC4+Hibernate4运行报错Could not obtain transaction-synchronized Session for current thread

       我也出现了这个问题,但是我在web.xml中增加了filter就可以了。也许你的问题不是这个,但我的南阳源码路灯这个问题是这么解决的。

        <filter>

        <filter-name>SpringOpenSessionInViewFilter</filter-name>

        <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>

        </filter>

        <filter-mapping>

        <filter-name>SpringOpenSessionInViewFilter</filter-name>

        <url-pattern>/*</url-pattern>

        </filter-mapping>

使用ssh一直找不到session,报错not found session in current thread

       Hibernate4 与 spring3 集成之后, 如果在取得session 的地方使用了getCurrentSession, 可能会报一个错:“No Session found for current thread”, 这个错误的原因,网上有很多解决办法, 但具体原因的分析,却没有多少, 这里一个原理分析:

       SessionFactory的getCurrentSession并不能保证在没有当前Session的情况下会自动创建一个新的,这取决于CurrentSessionContext的实现,SessionFactory将调用CurrentSessionContext的currentSession()方法来获得Session。在Spring中,dubbo源码解读如果我们在没有配置TransactionManager并且没有事先调用SessionFactory.openSession()的情况直接调用getCurrentSession(),那么程序将抛出“No Session found for current thread”异常。如果配置了TranactionManager并且通过@Transactional或者声明的方式配置的事务边界,那么Spring会在开始事务之前通过AOP的方式为当前线程创建Session,此时调用getCurrentSession()将得到正确结果。bootstrap源码实例

       然而,产生以上异常的原因在于Spring提供了自己的CurrentSessionContext实现,如果我们不打算使用Spring,而是自己直接从hibernate.cfg.xml创建SessionFactory,并且为在hibernate.cfg.xml

       中设置current_session_context_class为thread,himall 2.4 源码也即使用了ThreadLocalSessionContext,那么我们在调用getCurrentSession()时,如果当前线程没有Session存在,则会创建一个绑定到当前线程。

       Hibernate在默认情况下会使用JTASessionContext,vfp 抽奖 源码Spring提供了自己SpringSessionContext,因此我们不用配置current_session_context_class,当Hibernate与Spring集成时,将使用该SessionContext,故此时调用getCurrentSession()的效果完全依赖于SpringSessionContext的实现。

       在没有Spring的情况下使用Hibernate,如果没有在hibernate.cfg.xml中配置current_session_context_class,有没有JTA的话,那么程序将抛出"No CurrentSessionContext configured!"异常。此时的解决办法是在hibernate.cfg.xml中将current_session_context_class配置成thread。

       在Spring中使用Hibernate,如果我们配置了TransactionManager,那么我们就不应该调用SessionFactory的openSession()来获得Sessioin,因为这样获得的Session并没有被事务管理。

       至于解决的办法,可以采用如下方式:

       1.  在spring 配置文件中加入

<tx:annotation-driven transaction-manager="transactionManager"/>

       并且在处理业务逻辑的类上采用注解

@Service

       public class CustomerServiceImpl implements CustomerService {   

           @Transactional

           public void saveCustomer(Customer customer) {

               customerDaoImpl.saveCustomer(customer);

           }

           ...

       }

       另外在 hibernate 的配置文件中,也可以增加这样的配置来避免这个错误:

<property name="current_session_context_class">thread</property>

更多资讯请点击:休闲

推荐资讯

探店达人涉嫌发布违背公序良俗广告 浙江玉环市场监管部门立案调查

中国消费者报杭州讯记者施本允)消费者对店家爆粗口、翻白眼、水泼脸,这是消费纠纷?前排群众正搬来小马扎准备“吃瓜”,画风却猛然一转:消费者不满意的原因居然是店家价格便宜、手艺精湛。看完视频的小伙伴这才发

java培训网站源码_java培训网校

1.源码时代java培训有什么课程内容?2.Java开发者必备的10大学习网站,送给入门学习java的你,请收下!源码时代java培训有什么课程内容? 感谢对源码时代的关注和认可! 这是我们的