I am migrating our code to Spring 3.2 version (from 3.1.3) and I\'ve got an issue with Spring Cache Abstraction.
We use EhCache imp
Using oss.sonatype.org, you can search for a class by name and find in which artifacts it's contained, when they are indexed: https://oss.sonatype.org/index.html#nexus-search;classname~EhCacheCacheManager.
As SwapnilS has answered, it's in spring-context-support.
Updating the Maven pom.xml file worked for me.
Properties:
<org.springframework-version>3.2.3.RELEASE</org.springframework-version>
Dependencies
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${org.springframework-version}</version>
</dependency>
According to Appendix C. Migrating to Spring Framework 3.2,
"the EHCache support classes in the org.springframework.cache.ehcache package moved from the spring-context module to spring-context-support".