欢迎来到天天文库
浏览记录
ID:44714437
大小:43.50 KB
页数:6页
时间:2019-10-25
《Hibernate学习笔记之EHCache的配置》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Hibernate默认二级缓存是不启动的,启动二级缓存(以EHCache为例)需要以下步骤:1、添加相关的包:Ehcache.jar和commons-logging.jar,如果hibernate.jar中含有ehcache就不用添加Ehcache.jar,commons-logging.jar是用来实现Ehcache写日志的。2、配置hibernate.cfg.xml文件viewplaincopytoclipboardprint?01.02.2、>03.true04.org.hibernate.cache.EhCacheProvider05.true06.3、e.use_query_cache">true07.08.09.10.11.12.4、nate-configuration>trueorg.hibernate.cache.EhCacheProvidertrue5、rtyname="hibernate.cache.use_query_cache">true36、、添加配置文件--ehcache.xml,一般放在classpath或src下,也可以自定义文件名和路径,并在hibernate.cfg.xml中通过hibernate.cache.provider_configuration_file_resource_path参数指定。viewplaincopytoclipboardprint?01.02.03.7、ternal="false"05.timeToIdleSeconds="1000"06.timeToLiveSeconds="1000"07.overflowToDisk="false"08.memoryStoreEvictionPolicy="LRU"/>09.8、"timeToLiveSeconds="1000"overflowToDisk="false"memoryStoreEvictionPolicy="LRU"/>其中:maxElementsInMemory=“10000”//Cache中最多允许保存的数据对象的数量ext
2、>03.true04.org.hibernate.cache.EhCacheProvider05.true06.3、e.use_query_cache">true07.08.09.10.11.
3、e.use_query_cache">true07.08.09.10.11.
4、nate-configuration>trueorg.hibernate.cache.EhCacheProvidertrue5、rtyname="hibernate.cache.use_query_cache">true3
5、rtyname="hibernate.cache.use_query_cache">true
6、、添加配置文件--ehcache.xml,一般放在classpath或src下,也可以自定义文件名和路径,并在hibernate.cfg.xml中通过hibernate.cache.provider_configuration_file_resource_path参数指定。viewplaincopytoclipboardprint?01.02.03.7、ternal="false"05.timeToIdleSeconds="1000"06.timeToLiveSeconds="1000"07.overflowToDisk="false"08.memoryStoreEvictionPolicy="LRU"/>09.8、"timeToLiveSeconds="1000"overflowToDisk="false"memoryStoreEvictionPolicy="LRU"/>其中:maxElementsInMemory=“10000”//Cache中最多允许保存的数据对象的数量ext
7、ternal="false"05.timeToIdleSeconds="1000"06.timeToLiveSeconds="1000"07.overflowToDisk="false"08.memoryStoreEvictionPolicy="LRU"/>09.
8、"timeToLiveSeconds="1000"overflowToDisk="false"memoryStoreEvictionPolicy="LRU"/>
此文档下载收益归作者所有