Spring整合Hibernate报错:annotatedClasses is not writable or has an invalid setter method

Spring 整合Hibernate时报错:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [spring/applicationContext.xml]: Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'annotatedClasses' of bean class [org.springframework.orm.hibernate3.LocalSessionFactoryBean]: Bean property 'annotatedClasses' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? 

......

原因在于选择Hibernate的sessionFactory时有两种:

1. LocalSessionFactoryBean,使用*.hbm.xml进行配置,并且bean的class是hibernate3.LocalSessionFactoryBean:

	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>	
		<property name="mappingResources">
			<list>
				<value>User.hbm.xml</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop>
			</props>
		</property>
	</bean>


2. AnnotationSessionFactoryBean,bean的class是AnnotationSessionFactoryBean

<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="annotatedClasses</span>">
			<list>
				<value>com.xxx.model.User</span></value>
			</list>
		</property>
		<property name="hibernateProperties">
			<!-- <value>
				hibernate.dialect=org.hibernate.dialect.HSQLDialect
			</value> -->
			 <props>
		        <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
		        <prop key="hibernate.show_sql">true</prop>
		    </props>
		</property>
	</bean>
在获取session的时候,使用Session s = sessionFactory.openSession();


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值