How JSR107 Caching Annotations are meant to be used

I am getting a few questions lately on JSR107 caching annotations and whether implementations of JSR107 are providing them. Caching annotations can be added to your Java classes and will invoke caching operations as the method. For example below is an annotated BlogManager. [java]@CacheDefaults(cacheName = “blgMngr”) public class BlogManagerImpl implements BlogManager {private static Map<String, Blog>… Continue reading How JSR107 Caching Annotations are meant to be used