aspose file tools
The moose likes BEA/Weblogic and the fly likes How does CachingHome.invalidateAll() works ?? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » BEA/Weblogic
Reply Bookmark "How does CachingHome.invalidateAll() works ??" Watch "How does CachingHome.invalidateAll() works ??" New topic
Author

How does CachingHome.invalidateAll() works ??

Vicky Mohan
Ranch Hand

Joined: Oct 14, 2004
Posts: 130
Hey All,

I have the following code in my application running under weblogic 8.1

import javax.naming.InitialContext;
import weblogic.ejb.CachingHome;
Context initial = new InitialContext();
Object o = initial.lookup("CustomerEJB_CustomerHome");
CustomerHome customerHome = (CustomerHome)o;
CachingHome customerCaching = (CachingHome)customerHome; customerCaching.invalidateAll();

Can anybody explain if any factory methods in entity bean are getting called when invalidateAll() gets calls ??

If not, how is the implementation done to invalidate the entity beans in cache. I do understand weblogic takes care of it, even across multiple servers, but just curious about the way its done ..

Any help will be appreciated
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How does CachingHome.invalidateAll() works ??
 
Similar Threads
Weblogic-QL -- Resultset
Read-only inavlidation
clearing the ejb cache in Websphere 7 ??????
Home look up
CACHE INVALIDATION IN WEBLOGIC ??