Getting the required dependencies
Getting the dependencies required by Spring Data Redis is rather easy. The only dependency that is required is Spring Data Redis, and we can get it by adding the following dependency declaration to the pom.xml
file:
<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>1.0.1.RELEASE</version> </dependency>