springboot2.0 使用ehcache缓存

首先在springboot启动类添加

@EnableCaching

其次在serviceImpl层的方法上添加

@Cacheable(cacheNames = "zjehcache")

ehcache.xml:


    

    
        

    
    
    
        


cacheNames 的名字是自定义的与ehcache.xml中的 name一致。

点击项目model开始下载。

你可能感兴趣的:(springboot,缓存)