- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的项目中,我们使用 ehcache
对于二级缓存,我们提到<defaultCache>
标签和一些<cache>
属性也是如此。
ehcache.xml示例
<ehcache>
<defaultCache
maxEntriesLocalHeap="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
maxEntriesLocalDisk="10000000"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>
<cache name="com.test.First"
maxEntriesLocalHeap="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
/>
<cache name="com.test.Second"
maxEntriesLocalHeap="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
/>
</ehcache>
hibernate.cfg.xml示例
<class-cache class="com.test.First" usage="read-only"/>
<class-cache class="com.test.Second" usage="read-only"/>
<class-cache class="com.test.Third" usage="read-only"/>
这里我们添加了<class-cache>
标签 com.test.Third
,ehcache.xml
中没有提到。文件。
这个com.test.Third
类也可以通过使用 defaultCache
进行缓存?
最佳答案
实际上对于这种情况是这样,因为 Hibernate 会为您完成这项工作。但defaultCache 并不是为自动创建缓存而设计的。欲了解更多详情,请查看这个问题:Do caches in ehcache.xml inherit from defaultCache?这个问题:EhCache default cache in java
关于java - Ehcache与defaultCache?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21652059/
这就是我的 ehcache.xml 的样子: 我的 persistence.xml 包含以下内容:
如果我有以下配置: timeToIdleSeconds 的值是多少用于缓存 test ?它会从默认缓存继承,因此等于 120,还是会采用手册中给出的默认值,即 0(无穷大)? 最佳答案 timeT
我正在尝试将 Sping Annotation 缓存与 EhCache 一起使用。因此,首先,我将依赖项添加到 pom.xml 并将 application-context.xml 配置为:
我是一名优秀的程序员,十分优秀!