redis 小例
/**
* 获取所有
**/
@RequestMapping(value = "/getAll")
public void getall() {
Object list =redisClient.getData("sysDictionaries");
if(null ==list){
list = this.service.getAll();
redisClient.setData("sysDictionaries",list);
}
this.responseWriter(true, "获取成功", list);
}
posted on 2019-08-24 10:22 superficial。 阅读(139) 评论(0) 编辑 收藏 举报