SPRINGBOOT4--引入redis

Posted on 2018-05-31 14:30  李太阳  阅读(229)  评论(0编辑  收藏  举报

1.在pom中引入

<!-- redis -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<version>1.4.5.RELEASE</version>
</dependency>

2.在application中配置

3.编写简单的string

如果需要存入对象需要序列化等操作