拧巴人 发表于 2015-3-16 13:37

Miscellaneous properties 各种混合的属性

(1)hibernate.current_session_context_class 提供一个对于当前session 生命周期的策略。取值,jta、thread、managed、定制类名。
( 2 ) hibernate.query.factory_class 选择HSQL 的解析实现类。取值,org.hibernate.hsql.ast.ASTQueryTranslatorFactory 和
org.hibernate.hsql.classic.ClassicQueryTranslatorFactory。
(3)hibernate.query.subsitutions Hibernate 中标记符到SQL 中标记符的映射。举例说,可以是函数名或普通字符串名。取值,如hsqLiteral=SQL_LITERAL,
hqlFunction=SQLFUN。
(4)hibernate.hbm2ddl.auto 当SessionFactory 被创建时,自动的验证或输出模式DDL(也就建表语句)到数据库中。也就是说,自动的验证数据库表结构或先删
除再重新建立,或在原表结构上更新数据表结构。当将值置为create-drop 时,在SessionFactory 被清除时,将删除数据库中表结构。取值,validate、create、update、
create-drop。
(5)hibernate.cglib.use_reflection_optimizer 用CGLIB 代替运行期的reflection(系统级属性)。在有故障时,反射是非常有用的,注意Hibernate 总是需要CGLIB,
甚至在你关闭优化后。你不可以设置这个属性在hibernate.cfg.xml 文件中。

殇星 发表于 2016-1-6 18:23

学习学习学习学习
页: [1]
查看完整版本: Miscellaneous properties 各种混合的属性