I am trying to cache the result of a DAO, following this JDBC Caching chapter. Unfortunately, I am getting the following NullPointerException.
java.lang.NullPointerException
my.package.EhCacheWrapper.getCache(EhCacheWrapper.java:39)
Line 39 refers to the first try accessing an Ehcache instance, returned by this line
return cacheManager.getEhcache(cacheName);
where getEhcache(cacheName) returns null. The object reference id of cacheManager always stays the same. My project uses Spring 3.0.5 and Ehcache 2.3.0.