我有以下infinispan xml并获得解析异常。 javax.xml.stream.XMLStreamException:[row,col]处的ParseError:[3,36] 消息:遇到意外元素'{urn:infinispan:config:7.0} infinispan'
关于我为什么会收到此错误的任何想法?
<infinispan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:infinispan:config:7.0 http://www.infinispan.org/schemas/infinispan-config-7.0.xsd"
xmlns="urn:infinispan:config:7.0">
<jgroups>
<stack-file name="tcp" path="jgroups-tcp.xml"/>
</jgroups>
<cache-container name="SampleCacheManager" statistics="true" default-cache="the-default-cache" shutdown-hook="DEFAULT">
<transport stack="tcp" cluster="infinispan-cluster" node-name="Node-A" machine="m1" rack="r1" site="LON" />
<distributed-cache name="authCache" l1-lifespan="1800000" owners="2" mode="SYNC" >
<eviction max-entries="5000" strategy="FIFO" />
<expiration interval="500" max-idle="1800000" />
<persistence passivation="false">
<file-store path="/opt/UAT_01/cacheStore/" shared="false" preload="true" purge="true">
<write-behind flush-lock-timeout="5000" modification-queue-size="200" shutdown-timeout="1000" thread-pool-size="15" />
</file-store>
</persistence>
</distributed-cache>
</cache-container>
enter code here
答案 0 :(得分:1)
事实证明,我的lib路径中有一些无用的旧罐子。在运行时,它在层次结构中更高,并且它首先被拾取。清理后,它开始像魅力一样工作。