jfinal用maven多模块开发时,多个ehcache.xml文件,找不到cachename
jfinal使用maven多模块开发时,多个ehcache.xml文件
Caches cannot be added by name when default cache config is not specified in the config. Please add a default cache config in the configuration.
其中hgyx-back项目中引入了hgyx-core
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
hgyx-back是web项目(war),hgyx-core是普通项目(jar),hgyx-back中引入了hgyx-core,采用的是maven的多模块开发
怎么解决的?
回复
@JFinal : 在hgyx-back的ehcache.xml中添加了一个默认的defaultCache
回复
@JFinal : 回复有文字限制,我在下面写了配置项
解决了...
解决就好
<defaultCache
maxElementsInMemory="10000"
overflowToDisk="true"
eternal="false"
timeToLiveSeconds="7200"
timeToIdleSeconds="300"
diskPersistent="true"
diskExpiryThreadIntervalSeconds="120"
/>