我们正在使用 EhCache 2.4.2 作为缓存库的 Sun JVM 1.6.0_x 64 位在 Solaris 上的 WebLogic Server 10.3.4 中运行 Spring 3.0.5 Web 应用程序。WLS 设置为具有 2 个节点的集群,两个节点都运行在同一台物理机器上,通过标准
startManagedWebLogic.sh
脚本启动(不使用 NodeManager/管理控制台)。
在我们ehcache.xml
中,我们设置了这样的磁盘存储路径:
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
updateCheck="false">
<!-- Location of persistent caches on disk -->
<diskStore path="ehcache.disk.store.dir" />
..
根据EhCache 的 2.4 系列文档, 此设置允许设置 JVM 系统属性以指定磁盘存储路径。
startManagedWebLogic.sh
使用标准JAVA_OPTIONS
元素设置系统属性:
JAVA_OPTIONS="-Dehcache.disk.store.dir=/var/tmp/EhCache-${SERVER_NAME} <other stuff>"
export JAVA_OPTIONS
在SERVER_NAME
这些选项之前在同一脚本中定义。
在集群节点启动期间,我可以看到属性设置正确(包装以提高可读性):
/usr/jdk/jdk1.6.0_21/bin/java -d64 -server -Xms4096m -Xmx4096m
-XX:PermSize=512m -XX:MaxPermSize=512m -XX:+UseParallelOldGC
-verbose:gc -XX:+PrintGCTimeStamps -Dweblogic.Name=Node2 [..]
-Dehcache.disk.store.dir=/var/tmp/EhCache-Node2 [..]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
weblogic.Server
但是,然后使用应用程序,我可以看到占位符没有正确替换,因此使用占位符名称而不是实际路径设置:
2012-08-22 11:52:59,426 DEBUG [net.sf.ehcache.CacheManager] - [Creating new CacheManager with default config]
2012-08-22 11:52:59,429 DEBUG [net.sf.ehcache.CacheManager] - [Configuring ehcache from classpath.]
..
2012-08-22 11:52:59,458 DEBUG [net.sf.ehcache.config.DiskStoreConfiguration] - [Disk Store Path: ehcache.disk.store.dir]
..
2012-08-22 11:52:59,586 DEBUG [net.sf.ehcache.store.DiskStore] - [IOException reading index. Creating new index. ]
2012-08-22 11:52:59,587 DEBUG [net.sf.ehcache.store.DiskStore] - [Index file ehcache.disk.store.dir/bookmarksCountForUserCache.index deleted.]
2012-08-22 11:52:59,588 DEBUG [net.sf.ehcache.store.DiskStore] - [Index file ehcache.disk.store.dir/bookmarksCountForUserCache.index created successfully]
2012-08-22 11:52:59,588 DEBUG [net.sf.ehcache.store.DiskStore] - [Index file dirty or empty. Deleting data file bookmarksCountForUserCache.data]
2012-08-22 11:52:59,597 DEBUG [net.sf.ehcache.store.MemoryStore] - [Initialized net.sf.ehcache.store.LruMemoryStore for bookmarksCountForUserCache]
2012-08-22 11:52:59,600 DEBUG [net.sf.ehcache.store.LruMemoryStore] - [bookmarksCountForUserCache Cache: Using SpoolingLinkedHashMap implementation]
2012-08-22 11:52:59,601 DEBUG [net.sf.ehcache.Cache] - [Initialised cache: bookmarksCountForUserCache]
在我的 WLS 域内的文件系统中,我可以看到
ehcache.disk.store.dir
创建了一个新文件夹,因此该路径被解释为相对路径。
ehcache.disk.store.dir
我也尝试使用标准模式,而不是使用纯字符串${ehcache.disk.store.dir}
,但这只会更改要创建的文件夹名称${..}
。
有没有办法使用系统属性和所有节点的相同 EhCache 配置来指定每个节点的磁盘存储路径?
我们ehcache.xml
位于已部署的 .war 文件中,因此对于所有集群节点都是相同的。更改应用程序代码不是一种选择,因为我们已经结束了此版本的代码冻结。但是,我可以调整服务器的启动设置来设置系统属性,如上所述。
谢谢您的帮助!