
Hibernate
iteye_10235
这个作者很懒,什么都没留下…
展开
-
Note for hibernate 2009.1.8 - 2009.1.13
1. When automatic versioning is used, hibernate generates the following sql: update products set version=?, name=?, description=?, unitCost=?, pubTime=? where id=? and version=? Note that using such ...2009-01-08 17:29:00 · 109 阅读 · 0 评论 -
Summary for Hibernate Transaction
1.Three code styles Use hibernate's transaction: session.beginTransaction(); // ... interact with database session.getTransaction().commit(); Use JTA: javax.transaction.UserTransaction tx = new Initia...2009-01-20 10:11:35 · 122 阅读 · 0 评论 -
Should study these aspects of hibernate
1.transaction [done]2.cache3.session operations4.class mapping5.hql6.filter, interceptor, statistic, session context2009-01-20 15:43:51 · 109 阅读 · 0 评论 -
Note for hibernate 2009.1.20 - 2009.1.21
1.Three types of second level cache: class, collection, query. (class cache does not cache association, so we need collection cache) 2.Four cache modes 3.How different operation use and affect cac...2009-02-06 09:35:33 · 108 阅读 · 0 评论 -
Summary for hibernate session
application objects (jvm reference) <-> session cache (hibernate id) <-> session factory cache ...原创 2009-02-12 09:44:53 · 97 阅读 · 0 评论 -
Summary for hibernate cache
You have the option to tell Hibernate which caching implementation to use by specifying the name of a class that implements org.hibernate.cache.CacheProvider using the property hibernate.cache.provi...2009-11-03 16:29:04 · 125 阅读 · 0 评论