0

Spring IDE と Hibernate について説明しているチュートリアルに従ってみます。私はSpring Framework 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"/>

name="dataSource" ではなくname="datasource"

于 2013-04-07T15:28:04.853 に答える