• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

FileNotFoundException thrown when creating app-context object via ClassPathXmlApplicationContext

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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, no access) when the war is deployed it throws FileNotFoundException.



In the code the shared-common-context.xml file is in the location - \src\main\webapp\WEB-INF\, application-context.xml file is in the location - \src\main\resources\.
When the war is built (Maven is used) the application-context.xml is placed under WEB-INF/classes folder, and shared-common-context.xml is under WEB-INF folder.

The shared-common-context.xml file is imported within the application-context.xml file () and holds the PropertyPlaceholderConfigurer bean.


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?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic