0

我尝试遵循一个关于 Spring IDE with Hibernate 的教程。我正在使用 spring 框架 3.2,我创建了自己的库,其中包含所有 jar 框架,我还有另一个库 hibernate 4 我做了同样的例子,但我仍然有这个消息:

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

    <bean id="datasource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="driverClassName" value="org.postgresql.Driver"/>
    <property name="url"  value="jdbc:postgresql:T"/>
    <property name="username" value="postgres"/>
    <property name="password" value="root"/>
    </bean>

    <bean id="SessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="datasource" ref="datasource"/>**No setter found for property 'datasource' in class 
     'org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean'**
    <property name="annotatedClasses">
    <list>
    <value>com.model.Cours</value>
    <value>com.model.Student</value>
    </list>
    </property>


    </bean>
    </beans>

告诉我为什么?如果可能存在 annotation.AnnotationSessionFactoryBean 的问题,请提出建议。我使用 hibernate4 并且它不存在 hibernate4.annotation ...

4

2 回答 2

1

这是一个错字,应该是<property name="dataSource" ref="datasource"/>,不是<property name="datasource" ref="datasource"/>

名称= "数据源"不是名称="数据源"

于 2013-04-07T15:28:04.853 回答
0

“property”元素的“name”属性表示被引用类org.apache.commons.dbcp.BasicDataSource( http://commons.apache.org/proper/commons-dbcp/apidocs/org/ )的成员变量名apache/commons/dbcp/BasicDataSource.html),其中成员变量被声明为“受保护的数据源数据源”。它区分大小写。因此“name”属性的值必须始终与被引用类中声明的成员变量名称的大小写匹配。

于 2013-04-07T17:47:35.847 回答