November 2017
Intermediate to advanced
542 pages
14h 24m
English
RequestCacheAwareFilter removed the setRequestCache in favor of the constructor injection. For example:
RequestCacheAwareFilter filter = new RequestCacheAwareFilter();filter.setRequestCache(requestCache);
This should be replaced with:
RequestCacheAwareFilter filter = new RequestCacheAwareFilter(requestCache);
Read now
Unlock full access