zoukankan      html  css  js  c++  java
  • 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();


查看全文
  • 相关阅读:
    【翻译自mos文章】 11gR1版本号 asmcmd的新命令--cp、md_backup、md_restore
    Android实现ListView或GridView首行/尾行距离屏幕边缘距离
    iOS-为方便项目开发在pch加入一些经常使用宏定义
    [ACM] FZU 1686 神龙的难题 (DLX 反复覆盖)
    Cocos2d-x Touch事件处理机制
    在linux環境下安裝jprofiler_linux_8_0_2.sh
    QT5 Failed to load platform plugin &quot;windows&quot; 终极解决方式 命令行问题
    我们想要如何子的生活?
    javaEE mvc样例具体解释
    安装Kali Linux操作系统Kali Linux无线网络渗透
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10871599.html
  • Copyright © 2011-2022 走看看