• 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

FileNotFoundException thrown when creating app-context object via ClassPathXmlApplicationContext API

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Scenario There was a requirement in my project to multi-thread calls made to a Webservice. This is implemented using ThreadPoolTaskExecutor (Spring). As the thread class required values to be fed at runtime, had implemented the code as below -



Issue In local I have tomcat server and this implementation works as expected. However on Weblogic (on the client machine, I don't have access to Weblogic) when the war is deployed it throws FileNotFound Exception.

Exception



When the war if built (Maven is used) the application-context.xml is placed under WEB-INF/classes folder. And the shared-common-context.xml is under WEB-INF folder. The shared-common-context.xml file holds the PropertyPlaceholderConfigurer bean. The shared-common-context.xml file is imported within the application-context.xml file.

Below is the location where the code gets deployed on Weblogic (the code is within a hidden directory inside a temporary folder)
./servers/Coloris_PPT1_AdminServer/tmp/.appmergegen_1336142780924_documentservi‌​ce.war/WEB-INF/



Could someone please suggest how to proceed with this?
 
reply
    Bookmark Topic Watch Topic
  • New Topic