在SSH整合过程中:org/hibernate/engine/spi/SharedSessionContractImplementor
生活随笔
收集整理的這篇文章主要介紹了
在SSH整合过程中:org/hibernate/engine/spi/SharedSessionContractImplementor
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
我之前是用的Spring3+Hibernate5 發(fā)現(xiàn)有沖突。
研究后,正確的版本關(guān)系是Spring3+Hibernate4
在網(wǎng)上下載Hibernate4的包替換Hibernate5的包 加入lib
然后在配置連接池的時候,需要下載c3p0的jar包?
還需要下載org.springframework.orm......jar包
我的配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsdhttp://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!--加載properties文件--><context:property-placeholder location="WEB-INF/connectFactor.properties"/><!--配置連接池--><bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"><property name="driverClass" value="${jdbc.driver}"/><property name="jdbcUrl" value="${jdbc.url}"/><property name="user" value="${jdbc.user}"/><property name="password" value="${jdbc.password}"/></bean><!--配置Hibernate的相關(guān)屬性--><bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"><!--配置連接池--><property name="dataSource" ref="dataSource"/><!--配置Hibernate屬性--><property name="hibernateProperties"><props><prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop><prop key="show_sql">true</prop><prop key="hibernate.hbm2ddl.auto">update</prop></props></property><!--配置mapping文件--><property name="mappingResources"><list><value>com/mooc/ssh/domain/Product.hbm.xml</value></list></property></bean><!--配置一個Action--><bean id="productAction" class="com.mooc.ssh.action.ProductAction" scope="prototype"><property name="productService" ref="productService"></property></bean><!--配置業(yè)務(wù)層的類--><bean id="productService" class="com.mooc.ssh.service.ProductService"><property name="productDao" ref="productDao"/></bean><!--配置一個DAO的類--><bean id="productDao" class="com.mooc.ssh.dao.ProductDao"><property name="sessionFactory" ref="sessionFactory"/></bean><!--配置事務(wù)管理器--><bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"><property name="sessionFactory" ref="sessionFactory"/></bean><!--開啟注解事務(wù)--><tx:annotation-driven transaction-manager="txManager"/></beans>?
總結(jié)
以上是生活随笔為你收集整理的在SSH整合过程中:org/hibernate/engine/spi/SharedSessionContractImplementor的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java.lang.IllegalSta
- 下一篇: Spring boot 入门篇