角度 发表于 2016-8-31 21:10

求助spring4整合hibernate4配置

今天刚换了4的版本就报错,纠结啊,求助
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'Source' defined in class path resource : Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:

这是我spring配置信息:

<?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:aop="http://www.springframework.org/schema/aop"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:p="http://www.springframework.org/schema/p"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">

        <!-- 配置连接池数据源 -->
        <!-- <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
                <property name="jndiName">
                        <value>java:comp/env/jdbc/oracle</value>
                </property>
        </bean> -->
        <!-- 使用外部文件配置数据源 -->
        <bean id="config" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
                <property name="location">
                        <value>classpath:jdbc.properties</value>
                </property>
        </bean>
        <bean id="Source" class="org.springframework.jdbc.datasource.DriverManagerDataSource" >
                <property name="driverClassName" value="${driver}"/>
                <property name="url" value="${url}"/>
                <property name="username" value="${username}"/>
                <property name="password" value="${password}"/>
        </bean>
       
        <!-- 配置session工厂 -->
        <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
                <property name="dataSource" ref="Source"></property>
                <property name="hibernateProperties">
                        <props>
                                <prop key="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</prop>
                                <prop key="hibernate.current_session_context_class">
                                org.springframework.orm.hibernate4.SpringSessionContext
                                </prop>
                        </props>
                </property>
                <property name="mappingResources">
                        <list>
                                <value>com/entity.Dept.hbm.xml</value>
                                <value>com/entity.Emp.hbm.xml</value>
                        </list>
                </property>
        </bean>
       
        <!-- 配置dao层bean -->
                <bean id="staffDao" class="com.Dao.Impl.StaffDaoImpl">
                        <property name="sessionfactory" ref="sessionFactory"></property>
                </bean>
</beans>

不管是用哪种jar包的配置都是这个问题,搞不懂求解
页: [1]
查看完整版本: 求助spring4整合hibernate4配置