元素<cache>不允许嵌套的<searchable>元素

时间:2019-09-10 15:57:37

标签: java spring maven jboss ehcache

当我尝试将ehcache与旧版战争结合使用时,在JBoss 7.1.0EAP服务器中收到以下错误:

Caused by: net.sf.ehcache.CacheException: Error configuring from input stream. Initial cause was null:10: Element <cache> does not allow nested <searchable> elements.
        at net.sf.ehcache.config.ConfigurationFactory.parseConfiguration(ConfigurationFactory.java:157)
        at net.sf.ehcache.config.ConfigurationFactory.parseConfiguration(ConfigurationFactory.java:101)
        ... 94 more
Caused by: org.xml.sax.SAXException: null:10: Element <cache> does not allow nested <searchable> elements.
        at net.sf.ehcache.config.BeanHandler.createChild(BeanHandler.java:121)
        at net.sf.ehcache.config.BeanHandler.startElement(BeanHandler.java:73)
        at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
        at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)
        at javax.xml.parsers.SAXParser.parse(SAXParser.java:195)
        at net.sf.ehcache.config.ConfigurationFactory.parseConfiguration(ConfigurationFactory.java:155)
        ... 95 more

我的pom.xml具有以下

<dependency>
    <groupId>net.sf.ehcache</groupId>
    <artifactId>ehcache-core</artifactId>
    <version>2.4.5</version>
</dependency>

我在做什么错

0 个答案:

没有答案