标签:用户表 设置 包括 cache app group config artifact 依赖
Spring Cache 是一套框架缓存的解决方案,SpringBoot 有效的对 Cache 做出了简化,只需要使用注解即可操作我们保存在缓存区(包括内存区,缓存服务器Redis)的缓存数据(餐桌预定表,用户表)
应用系统需要通过 Cache 来缓存不经常改变的数据,以提高系统性能和增加系统吞吐量 。避免直接访问数据库等低速存储区系统 ,缓存的数据通常存放在访问速度更快的内存中或者是低延迟存取的存储器,服务器上 。
Spring Boot 集成 Cache 步骤如下
1,在 Maven 的 pom.xml 导入如下依赖
1 <!-- spring cache --> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-starter-cache</artifactId> 5 </dependency>
2,在 application.properties 中设置缓存中间件类型
1 <!-- 配置缓存中间价的类型 --> 2 spring.cache.type=redis (MonDB, Simple, none)
3,在启动类中开启 Cache
1 @EnableCaching 2 @SpringBootApplication 3 public class BookSystemMicroServices { 4 public static void main(String[] args) { 5 SpringApplication.run(BookSystemMicroServices.class, args); 6 } 7 }
标签:用户表 设置 包括 cache app group config artifact 依赖
原文地址:https://www.cnblogs.com/zouzhu1998/p/12015952.html