Spring 整合 Redis.doc
文本预览下载声明
pom构建:
[html] view plaincopyprint?
modelVersion4.0.0/modelVersion??
groupIdcom.x.redis/groupId??
artifactIdspringredis/artifactId??
version0.0.1-SNAPSHOT/version??
??
dependencies??
????dependency??
????????groupIdorg.springframework.data/groupId??
????????artifactIdspring-data-redis/artifactId??
????????version1.0.2.RELEASE/version??
????/dependency??
????dependency??
????????groupIdorg.springframework/groupId??
????????artifactIdspring-test/artifactId??
????????version3.1.2.RELEASE/version??
????????scopetest/scope??
????/dependency??
??????
????dependency??
????????groupIdredis.clients/groupId??
????????artifactIdjedis/artifactId??
????????version2.1.0/version??
????/dependency??
??????
?????dependency??
????????groupIdjunit/groupId??
????????artifactIdjunit/artifactId??
????????version4.8.2/version??
????????scopetest/scope??
????/dependency??
/dependencies??
modelVersion4.0.0/modelVersion
groupIdcom.x.redis/groupId
artifactIdspringredis/artifactId
version0.0.1-SNAPSHOT/version
dependencies
dependency
groupIdorg.springframework.data/groupId
artifactIdspring-data-redis/artifactId
version1.0.2.RELEASE/version
/dependency
dependency
groupIdorg.springframework/groupId
artifactIdspring-test/artifactId
version3.1.2.RELEASE/version
scopetest/scope
/dependency
dependency
groupIdredis.clients/groupId
artifactIdjedis/artifactId
version2.1.0/version
/dependency
dependency
groupIdjunit/groupId
artifactIdjunit/artifactId
version4.8.2/version
scopetest/scope
/dependency
/dependencies
spring配置文件(applicationContext.xml):
[html] view plaincopyprint?
?xml?version=1.0?encoding=UTF-8???
beans?xmlns=/schema/beans??
????xmlns:xsi=/2001/XMLSchema-instance?xmlns:p=/schema/p??
????xmlns:context=/schema/context??
????xmlns:jee=/schema/jee?xmlns:tx=/schema/tx??
????xmlns:aop=/schema/aop??
????xsi:schemaLocation=??
????????????/schema/beans?/schema/beans/spring-beans.xsd??
????????????
显示全部