Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
配置集群 url 时是否可以在 ehcache3.xml 中使用系统属性?喜欢:
<terracotta:connection url="${ehcache.cluster.server}" />
目前这是不可能的,因为该字段上有一个 XSD 验证,这会阻止该值以此类字符开头。
但是,您可以通过执行以下操作来欺骗 XSD 验证:
<terracotta:connection url="terracotta://${ehcache.cluster.server}" />
并确保没有terracotta://in 您的系统道具值。
terracotta://