1 新建springboot项目
2 相关注解
@EnableCaching 在启动类上加上注解启动缓存
#作用在你要缓存的数据上
@Cacheable(key="#id",cacheNames="com.sxt.service.impl.MenuServiceImpl")
@Cacheput 解决脏读
@CachEvict(解决脏读)
@Cacheconfig(全局的配置缓存)
3 修改yml
#
spring:
#数据源
datasource:
driver-class-name: co