仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 748|回复: 9
打印 上一主题 下一主题

[学习教程] 来看hibernate 3.3接纳新的缓存办法

[复制链接]
谁可相欹 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-18 11:19:59 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

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

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-11-10 23:36

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表