最近花空余时间学习了一下redis缓存,redis作为一个缓存的技术框架很受开发者的喜欢,我觉得有必要去学习一下。
下面是我整合的一个小demo:
org.springframework.boot
spring-boot-starter-redis
1.3.8.RELEASE
org.springframework.boot
spring-boot-starter-data-jpa
mysql
mysql-connector-java
runtime
pom.xml文件:
4.0.0
com.example
redis-test
0.0.1-SNAPSHOT
jar
redis-test
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.3.3.RELEASE
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-cache
org.springframework.boot
spring-boot-starter-redis
1.3.8.RELEASE
org.springframework.boot
spring-boot-starter-data-jpa
com.alibaba
druid
1.0.28
mysql
mysql-connector-java
runtime
org.springframework.boot
spring-boot-test
2.0.3.RELEASE
org.springframework
spring-test
5.0.7.RELEASE
org.springframework.boot
spring-boot-maven-plugin
#端口号设定
server.port=8400
# database数据源配置
spring.datasource.url=jdbc:mysql://localhost:3306/tjytest?useUnicode=true&characterEncoding=utf-8
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
#最大活跃数
spring.datasource.max-active=20
#初始化数量
spring.datasource.initial-size=1
#最大连接等待超越时间
spring.datasource.max-wait=60000
#打开PSCache,并且指定每个连接Cache的大小
spring.datasource.pool-prepared-statements=true
spring.datasource.maximum-pool-size=20
#jpa
spring.jpa.show-sql=true
#配置redis
spring.redis.port=6379
spring.redis.host=127.0.0.1
spring.redis.database=0
spring.redis.jedis.pool.max-active=20
spring.redis.jedis.pool.max-idle=20
spring.redis.jedis.pool.min-idle=1
spring.redis.jedis.pool.max-wait=60000
spring.redis.timeout=0
package com.example.demo.config;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.core.RedisTemplate;
/**
* Created by Administrator on 2018/8/15.
*/
@Configuration
@EnableCaching
public class RedisConfiguration {
@Bean
public CacheManager cacheManager(RedisTemplate redisTemplate){
return new RedisCacheManager(redisTemplate);
}
}
此处说明;@EnableCaching---开启我们的项目支持缓存
CacheManager作为一个缓存管理器,此方法,项目启动的时候,自动加载。
分别新建,pojo,model,service,controller包,如下所示:
package com.example.demo.model;
import javax.persistence.*;
import java.io.Serializable;
/**
* Created by Administrator on 2018/8/15.
*/
@Table(name = "user") //对应数据库中的user表
@Entity(name = "User")
public class User implements Serializable{
@Id
@GeneratedValue
@Column(name = "id")
private int id;
@Column(name = "age")
private int age;
@Column(name = "name")
private String name;
@Column(name = "password")
private String password;
}
setter or getter 此处代码就不贴了,自行加上就可以了。
package com.example.demo.pojo;
import com.example.demo.model.User;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* Created by Administrator on 2018/8/15.
*/
public interface UserRepository extends JpaRepository {
}
package com.example.demo.service;
import com.example.demo.model.User;
import com.example.demo.pojo.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheConfig;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Created by Administrator on 2018/8/15.
*/
@Service
//该注解是用来开启声明的类参与缓存
@CacheConfig(cacheNames = "user")
public class UserService {
@Autowired
private UserRepository userRepository;
// 此注解配置方法的缓存参数,可自定义缓存的key以及value
@Cacheable
public List findAll(){
return userRepository.findAll();
}
}
package com.example.demo.controller;
import com.example.demo.model.User;
import com.example.demo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* Created by Administrator on 2018/8/15.
* 缓存测试类
*/
@RestController
public class UserController {
@Autowired
private UserService userService;
@RequestMapping(value = "/findAll")
public List findAllUser(){
return userService.findAll();
}
}
方便测试,此处直接使用@RestController注解将结果以json格式返回到页面。
基本代码,现在我们启动项目,使用http://127.0.0.1:8400/findAll 访问
到此为止,代码没有问题的,项目成功启动:
访问http://127.0.0.1:8400/findAll则看见
我们加了hibernate的sql打印配置控制台如下:
由于我们加了缓存,再次访问页面还是一样的结果,但是控制台不会再次打印:
为了验证已成功缓存,我们打开redis-dli.exe应用程序,输入keys * 查看全部缓存key
这里显示出来的key并不美观,所以实际中,我们需要自己自定义key,大家可以自行操作,只需要在RedisConfiguration.java文件中增加缓存配置。
在SpringBoot中启用redis缓存写起来也挺简单的,只需要加几个注解即可。同时我们可以通过增加缓存配置的方式,让存储到redis中的key尽量使其美观一点,再者也是为了有良好的可读性。
博主的第一篇博客,写得有些粗略,学到与此,就做个记录,后续方便自己阅读,各位发现问题还望指出来。