仓酷云

标题: 来看hibernate 3.3接纳新的缓存办法 [打印本页]

作者: 谁可相欹    时间: 2015-1-18 11:19
标题: 来看hibernate 3.3接纳新的缓存办法
学习JAVA的目的更多的是培养自身的工作能力,我觉得工作能力的一个核心就是:独立思考能力,因为只有独立思考后,才会有自己的见解
明天检察hibernatecache接口时svn了hibernate3.3的源码
翻开CacheProvider类一看竟然给@deprecated
真是年夜块民气
早就对hibernate的二级缓存和查询缓存不爽
只能依照实体设置不克不及针对某条查询语句设置
3.3的供应了两个接口Region RegionFactory来取代3.2中的CacheCacheProvider
看看RegionFactory的完成吧
看看这几个办法名字是何等的让人冲动
Java代码
buildCollectionRegion 对汇合的缓存 推测是对一对多的汇合举行设置的吧
buildQueryResultsRegion 查询缓存 自界说的查询 也能够有本人的region了
buildTimestampsRegion  给缓存设置过时工夫吧
英文欠好推测的英文好的能够翻译一下
在gg上搜刮了一下hibernateRegionFactory关头字竟然没搜刮到
岂非人人对个功效都不伤风
Java代码
public interface RegionFactory {

 public void start(Settings settings, Properties properties) throws CacheException;

 public void stop();

 public boolean isMinimalPutsEnabledByDefault();

 public long nextTimestamp();

 public EntityRegion buildEntityRegion(String regionName, Properties properties, CacheDataDescription metadata) throws CacheException;

 public CollectionRegion buildCollectionRegion(String regionName, Properties properties, CacheDataDescription metadata) throws CacheException;

 public QueryResultsRegion buildQueryResultsRegion(String regionName, Properties properties) throws CacheException;

 public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException;
}
附上hibernate3.3cache包里的申明
援用
ThispackagedefinesAPIs/SPIsandimplementationsfortheHibernatesecond-levelcache.
Thelegacy(andnowdeprecated)approachtocachingisdefinedbythe{@linkorg.hibernate.cache.CacheProvider}and{@linkorg.hibernate.cache.Cache}interfacesaswellasthe{@linkorg.hibernate.cache.CacheConcurrencyStrategy}interfacealongwiththevariousimplementationsofalltheseinterfaces.Inthatscheme,a{@linkorg.hibernate.cache.CacheProvider}definedhowtoconfigureandperformlifecycleoperationsinregardstoaparticularunderlyingcachinglibrary;italsodefinedhowtobuild{@linkorg.hibernate.cache.Cache}instanceswhichinturndefinedhowtoaccessthe"regions"oftheunderlyingcacheinstance.Forentityandcollectiondatacacheregions,{@linkorg.hibernate.cache.CacheConcurrencyStrategy}wrappedaccesstothosecacheregionstoapplytransactional/concurrentaccesssemantics.
Theimprovedapproachisbasedon{@linkorg.hibernate.cache.RegionFactory},thevarious{@linkorg.hibernate.cache.Region}specializationsandthetwoaccessstrategiescontracts({@linkorg.hibernate.cache.access.EntityRegionAccessStrategy}and{@linkorg.hibernate.cache.access.CollectionRegionAccessStrategy}).Thegeneralapproachhereisthat{@linkorg.hibernate.cache.RegionFactory}definedhowtoconfigureandperformlifecycleoperationsinregardstoaparticularunderlyingcachinglibrary(orlibraries).{@linkorg.hibernate.cache.RegionFactory}alsodefineshowtobuildspecialized{@linkorg.hibernate.cache.Region}instancesbasedonthetypeofdatawewillbestoringinthatgivenregion.Thefactthat{@linkorg.hibernate.cache.RegionFactory}isaskedtobuildspecializedregions(asopposedtojustgeneralaccess)isthefirstimprovementoverthelegacyscheme.Thesecondimprovementisthefactthattheregions(welltheoneslikeentityandcollectionregionsthatareresponsibleforstoring{@linkorg.hibernate.cache.TransactionalDataRegiontransactional}data)areaskedtobuildtheirownaccessstrategies(see{@linkorg.hibernate.cache.EntityRegion#buildAccessStrategy}and{@linkorg.hibernate.cache.CollectionRegion#buildAccessStrategy}).

但是对于JAVA技术类的学习,我觉得大课堂反而会影响自身独立思考的过程,因为上课的时候,老师讲课的速度很快为了不遗漏要点,通常会仔细的听,
作者: admin    时间: 2015-1-20 20:39
当然你也可以参加一些开源项目,一方面可以提高自己,另一方面也是为中国软件事业做贡献嘛!开发者在互联网上用CVS合作开发,用QQ,MSN,E-mail讨论联系,天南海北的程序员分散在各地却同时开发同一个软件,是不是很有意思呢?
作者: 深爱那片海    时间: 2015-1-25 10:22
如果你学过HTML,那么事情要好办的多,如果没有,那你快去补一补HTML基础吧。其实JSP中的Java语法也不多,它更象一个脚本语言,有点象ASP。
作者: 乐观    时间: 2015-2-2 21:38
是一种由美国SUN计算机公司(Sun Microsystems, Inc.)所研究而成的语言
作者: 仓酷云    时间: 2015-2-8 06:31
其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。
作者: 灵魂腐蚀    时间: 2015-2-16 22:21
至于JDBC,就不用我多说了,你如果用java编过存取数据库的程序,就应该很熟悉。还有,如果你要用Java编发送电子邮件的程序,你就得看看Javamail 了。
作者: 飘灵儿    时间: 2015-2-17 11:56
是一种为 Internet发展的计算机语言
作者: 蒙在股里    时间: 2015-3-5 19:28
Sun公司看见Oak在互联网上应用的前景,于是改造了Oak,于1995年5月以Java的名称正式发布。Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。
作者: 若相依    时间: 2015-3-12 11:59
是一种语言,用以产生「小应用程序(Applet(s))
作者: 金色的骷髅    时间: 2015-3-19 21:52
所以现在应用最广泛又最好学的就是J2EE了。 J2EE又包括许多组件,如Jsp,Servlet,JavaBean,EJB,JDBC,JavaMail等。要学习起来可不是一两天的事。那么又该如何学习J2EE呢?当然Java语法得先看一看的,I/O包,Util包,Lang包你都熟悉了吗?然后再从JSP学起。




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2