Jyo
Jyo

Reputation: 1

org.xml.sax.SAXParseException Document root element "ehcache", must match DOCTYPE root "null"

I am trying to deploy spring+cxf+maven based web service to wildfly. While deploying, Facing this exception

2017-06-13 03:20:18,874 INFO  [org.springframework.context.support.PropertySourcesPlaceholderConfigurer] (ServerService Thread Pool -- 60) Loading properties file from VFS resource ["/C:/xxxx/wildfly-9.0.2.Final/bin/content/ServiceWrapper-0.0.1-SNAPSHOT.ear/lib/ehcache-2.10.4.jar/ehcache-failsafe.xml"]
2017-06-13 03:20:18,883 WARN  [org.springframework.web.context.support.XmlWebApplicationContext] (ServerService Thread Pool -- 60) Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.util.InvalidPropertiesFormatException: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 118; Document root element "ehcache", must match DOCTYPE root "null".
2017-06-13 03:20:18,886 ERROR [org.springframework.web.context.ContextLoader] (ServerService Thread Pool -- 60) Context initialization failed: org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.util.InvalidPropertiesFormatException: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 118; Document root element "ehcache", must match DOCTYPE root "null".

Could someone please help.

Upvotes: 0

Views: 1300

Answers (1)

Henri
Henri

Reputation: 5711

I will guess a bit here but you seem to load the ehcache configuration file as if it was a Spring configuration file. Which obviously won't work.

I can confirm that if you show us the actual code.

Upvotes: 0

Related Questions