• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/applicationContext.

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

I am getting the below error when i start up the jboss server. i have the following jars in my lib folder

spring-context-3.2.0.M1
spring-core-3.2.0.M1
spring-aspects-3.2.0.M1
spring-aop-3.2.0.M1
spring-web-3.2.0.M1
spring-beans-3.2.0.M1
spring-webmvc-3.2.0.M1

this is all happening when i have the following code in my applicationContext.xml

schema definition in my application context is,

i am trying to solve this problem since y'day...but i don't have an idea how to solve it. any help is really appreciated.

Thanks
 
Bartender
Posts: 1682
7
Android Mac OS X IntelliJ IDE Spring Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds like a class loader issue. Do a mvn dependency:tree first and make sure that you are not pulling in multiple versions of your Spring jars. Also make sure that your application server if applicable is set to load parent-last


Couple other points you are using Spring 3.2 but you namespaces are 3.0 (this will not fix your problem but will cause issues if you need to use features defined in the newer schema)


Also I think it is a bad idea to set lazy-init to true on a container wide basis. Do it at the bean level if it is necessary at all and 99% of the time it is not.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic