Could not obtain transaction-synchronized Session for current thread 錯誤的緣由spring
用事物不能用opensessionexpress
必須用getcurrentsessionsession
報錯的緣由是沒有配置事物的切面 ,或者掃描的包錯了spa
<!-- 配置事務管理器 -->hibernate
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">orm
<property name="sessionFactory" ref="sessionFactory"></property>事務
</bean>get
<!-- 配置事務通知屬性 -->it
<tx:advice id="txAdvice" transaction-manager="transactionManager">io
<!-- 定義事務傳播屬性 -->
<tx:attributes>
<tx:method name="save*" propagation="REQUIRED" /> <!-- 支持當前事務,若是執行到save開頭的任何方法時沒有事務則開啓一個事務 這是最多見的方式 -->
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="find*" propagation="SUPPORTS" read-only="true" /> <!-- 支持當前事務,若是當前沒有事務,就以非事務方式執行。只讀 -->
<tx:method name="get*" propagation="SUPPORTS" read-only="true" />
<tx:method name="*" propagation="SUPPORTS" read-only="true" />
</tx:attributes>
</tx:advice>
<!-- 配置事務切面 -->
<aop:config>
<aop:pointcut id="txMethod" expression="execution(* org.ym.demo.service.impl.*ServiceImpl.*(..))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="txMethod" />
</aop:config>
這玩意會幫我買開啓事物