I'm working with a spring project using hibernate and look to implement second-level cache using ehcache. I see a number of approaches to this:
spring-modules-cachewhich introduces the@Cacheableannotationehcache-spring-annotationsa toolset which aims to be the successor ofspring-modules-cache.Hibernate cacheis nicely integrated into hibernate itself to perform caching using e.g., the@Cacheannotation.Programmatic cacheusing proxies. Annotation based config quickly becomes either limited or complex (e.g., several levels of annotation nesting)
Personally I don't think spring-modules-cache is thorough enough, hence I would probably prefer consider the more actively developed ehcache-spring-annotations. Hibernate cache though seems to be most complete implementation (e.g., both read and write cache etc).
What would motivate which toolset to use? Please share your caching experience ...