我有一个方法,它使用hibernate连接到数据库并检索数据。该方法作为独立的Java应用程序执行时工作正常。但是,当我尝试在tomcat上部署它并作为Web服务调用时,我收到如下错误。我的方法是第一个也是唯一一个建立数据库连接的地方,即我没有在tomcat中定义任何数据源。
No Hibernate Session bound to thread, and configuration does not allow creation
of non-transactional one here
at
org.springframework.orm.hibernate3.LocalSessionFactoryBean$TransactionAwareInvocationHandler.invoke(LocalSessionFactoryBean.
我的hibernate配置文件:
<bean id="mySessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="myDataSource" />
<property name="exposeTransactionAwareSessionFactory" value="true" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">none</prop>
<prop key="hibernate.statement_cache.size">10</prop>
<prop key="hibernate.c3p0.min_size">1</prop>
<prop key="hibernate.c3p0.max_size">10</prop>
<prop key="hibernate.connection.autocommit">false</prop>
<prop key="hibernate.default_schema">${mydbSchema}</prop>
<prop key="hibernate.current_session_context_class">thread</prop>
<prop key="hibernate.transaction.manager_lookup_class">com.atomikos.icatch.jta.hibernate3.TransactionManagerLookup</prop>
</props>
</property>
</bean>
我正在使用以下hibernate模块:
hibernate-annotations 3.4.0.GA, hibernate-core 3.3.1.GA, hibernate 3.2.6.ga, hibernate-commons-annotations 3.1.0.GA
答案 0 :(得分:0)
您的方法需要在事务中调用。或者您的方法需要使用交易。
答案 1 :(得分:0)
如果实现服务器端Web服务的类是Spring bean,只需使用@Transactional
访问数据库的环绕方法。如果不是这种情况,请将该注释添加到作为WS和DAO之间的中介的其他Spring bean中。
如果@Transactional
不适合您,您可以随时使用TransactionTemplate
。