hibernate使用annotation需要配置下面文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <!-- Hibernate session factory 使用hbm.xml的用这个类 org.springframework.orm.hibernate3.LocalSessionFactoryBean --> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource"/> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop> <prop key="hibernate.show_sql">true</prop> </props> </property> <property name="annotatedClasses"> <list> <value>com.note.model.Customer</value> </list> </property> </bean> </beans>
注意使用下面这句配置:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
否则会出现:Invalid property 'annotatedClasses' of bean class 。。错误
本文介绍如何使用Spring配置Hibernate注解支持,包括配置SessionFactory Bean、指定数据源、设置Hibernate属性及映射实体类。
193

被折叠的 条评论
为什么被折叠?



