springboot2.x整合ehcache

  1. 整合pom依赖。
            
            
                org.springframework.boot
                spring-boot-starter-cache
            
            
                net.sf.ehcache
                ehcache
                2.10.6
            

     

  2.  

    增加yml配置。

    spring:
      cache:
        ehcache:
    #配置文件路径
          config: classpath:conf/ehcache.xml

     

  3. 增加配置文件,ehcache.xml。

    
    
    
        
        
        
        
        
    
    

    配置完成,我们可以利用注解进行开发,也可以封装一个工具类。下面写一个test看看结果。

     @Test
        public void testCache(){
            //cache的name和配置文件中的name需要一致
            //获取cache
            Cache resys = cacheManager.getCache("resys");
            //存进一个值
            resys.put("yan", "matthew");
            //获取值,并输出
            System.out.println(resys.get("yan").get());
        }

    结果如下:

    springboot2.x整合ehcache_第1张图片 

你可能感兴趣的:(web开发笔记,项目实战,spring,boot)