标签:
java.lang.IllegalStateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here这个异常
这个错误,网上说的原因一大推,反正我这个出的问题 是因为 虽然我在 spring 里把事务都配置好了,结果运行就出现这个错误,看看配置都没什么问题,都是网上 案例 照 写编码的,还是错的,结果发现是因为 我 在拿 spring 中 的 service 或 dao bean 时 拿的方式错了。
FooService fooService = ctx.getBean("xxxxDao",FooService.class);
//不能直接中bean中拿目标代理对象,而是从事务bean中去拿目标代理对象,这样拿到的代理才有spring 事务管理
//FooService fooService = (FooService) ctx.getBean("fooService");
---》 如上边 spring 中是对 FooService 接口 的 子类 xxxFooService 进行 事务管理,原来习惯直接
FooService fooService = (FooService) ctx.getBean("fooService"); -- fooService 为spring中的bean
其实错的,拿到的虽然也是 子类 xxxFooService 的bean ,但是这个 bean是没有 spring 事务管理的,那怎么才能拿到有spring 管理的bean呢,即
FooService fooService = ctx.getBean("xxxxDao",FooService.class); -- 这个 xxxxDao 为 TransactionProxyFactoryBean 的bean 或 是其 子类 bean(当其为abstract时必须拿其子类bean)
上边第一个参数 为 事务bean ,第二个参数 为我们想要 的 代理目标对象(必须用接口类,不可用具体实现类),这样拿到的 service 才有 spring 事务管理,改正后上边的报错就不会出现了。
标签:
原文地址:http://www.cnblogs.com/wzhanke/p/4883686.html