I have a customer who's stuck in an EJB 3.0 environment. No @Singleton, no bean-managed concurrency :-(
Considering thread management and synchronization is forbidden by the ejb specification, how to implement a cache? In essence, I want an non-synchronized object cache for some costly operations.
I doubt whether I understood your question clearly or not! Following example is based on
weblogic
andeclipselink
.If you are using eclipselink JPA for your EJB, you can use cache for your every entities separately like this:
If you want, you can enable caching for all the entities from the persistence.xml file also. This will be like this inside the property field(oracle doc's link):
Cache type can be different like Soft, Hard, Weak, Full, etc. Each of them is having their own meaning. You can find more about this cache type from here.