使用java annotation 的机制来替代部分 pojo.hbm.xml中的配置
通过:
applicationContext.xml中的
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.
AnnotationSessionFactoryBean">
</bean>
使用hibernate.cfg.xml文件
applicationContext.xml中的
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.
AnnotationSessionFactoryBean">
<!—- 注意路径 -->
<property name="configLocation"
value="/WEB-INF/classes/hibernate.cfg.xml"/>
</bean>
hibernate.cfg.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!— 数据库的url -->
<property name="hibernate.connection.url">
jdbc:mysql://localhost/training
</property>
<!— 数据库的驱动 -->
<property name="hibernate.connection.driver_class">
com.mysql.jdbc.Driver
</property>
<!— 数据库的登陆用户名 -->
<property name="hibernate.connection.username">root</property>
<!— 数据库的登陆密码 -->
<property name="hibernate.connection.password"></property>
<!— 数据库的方言(特性) -->
<property name="dialect">
org.hibernate.dialect.MySQLInnoDBDialect
</property>
<!— 是否在控制台显示SQL语句-->
<property name="show_sql">true</property>
<!— 声明Pojo.hbm.xml文件 -->
<mapping resource="com/syy/model/pojo/User.hbm.xml"/>
<mapping resource="com/syy/model/pojo/Teacher.hbm.xml"/>
<mapping class="com.syy.model.pojo.Teacher"/>
</session-factory>
</hibernate-configuration>
不使用hibernate.cfg.xml 文件
applicationContext.xml中的
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<!— 数据库的驱动 -->
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<!— 数据库的URL -->
<!— 红色代表出来中文乱码问题 -->
<property name="url" value="jdbc:mysql://localhost/training?useUnicode=true&characterEncoding=GBK"/>
<!— 数据库登陆的用户名-->
<property name="username" value="root"/>
<!— 数据库登陆的密码 -->
<property name="password" value=""/>
<!— 最大活动数maxActive -->
<property name="maxActive" value="100"/>
<!— 等待的最长时间maxActive -->
<property name="maxWait" value="1000"/>
<!— 建立preparedStatement的池 poolPreparedStatements -->
<property name="poolPreparedStatements" value="true"/>
<!—默认自动提交 poolPreparedStatements -->
<property name="defaultAutoCommit" value="true"/>
</bean>
<!—与hibernate.cfg.xml文件中的sessionFactory标签作用一致-->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<!-- property name="configLocation" value="/WEB-INF/hibernate.cfg.xml"/-->
<property name="dataSource" ref="dataSource"/>
<!— 与hibernate.cfg.xml文件中的mapping标签作用一致 -->
<property name="annotatedClasses">
<list>
<value>com.syy.model.pojo.User</value>
</list>
</property>
<property name="hibernateProperties">
<!-- org.hibernate.dialect.OracleDialect org.hibernate.dialect.MySQL5InnoDBDialect -->
<value>
//
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
/*
你可以使用hibernate.query.substitutions在Hibernate中定义新 的查询符号. 例如:
hibernate.query.substitutions true=1, false=0
将导致符号true和false在生成的SQL中被翻译成整数常量.
*/
hibernate.query.substitutions=true 'Y', false 'N'
//hibernate.cache.use_query缓存query
hibernate.cache.use_query=true
//hibernate.cache.use_second_level_cach使用二级缓存
hibernate.cache.use_second_level_cache=true
//hibernate.cache.provider_class缓存的提供类 hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider
hibernate.show_sql=true
</value>
<!—如果使用的是 PostgreSQL 数据库加上以下信息异常将更好的展示-->
<!-- hibernate.jdbc.batch_size=0 -->
</property>
</bean>
annotation在Hibernate中的用法
最新推荐文章于 2024-11-15 22:11:31 发布