Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to share ehcache in multiple wars. I have put ehcache-core-2.2 jar in ear lib and its working fine in JBOSS. Same ear is not working in Weblogic 10.3. Caching is avaliable in the root context only, its not propgating to other web contexts. Any help in this regard would be highly appericiated.

share|improve this question

1 Answer

up vote 1 down vote accepted

Within an EAR file, placing the common JAR files in the APP-INF/lib directory and individual classes in the APP-INF/classes directory should work.

Further Resources

Understanding WebLogic Server Application Classloading

share|improve this answer
I did place common jar files in APP-INF/lib but I also had entires of jar files in war MANIFEST.MF file, thats why it was not working. Thanks for pointing me in the right direction. – user368957 Nov 25 '10 at 2:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.