1.pom.xml

org.springframework.boot

spring-boot-starter-cache

net.sf.ehcache

ehcache

2.配置文件echache.xml

xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">

overflowToDisk="false" diskPersistent="false" timeToIdleSeconds="0"

timeToLiveSeconds="600" memoryStoreEvictionPolicy="LRU" />

name="userCache"

maxElementsInMemory="1000"

eternal="false"

timeToIdleSeconds="300"

timeToLiveSeconds="300"

overflowToDisk="false"

memoryStoreEvictionPolicy="LRU">

class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"

properties="

replicateAsynchronously=true,

replicatePuts=true,

replicateUpdates=true,

replicateUpdatesViaCopy=true,

replicateRemovals=true " />

class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory"

properties="bootstrapAsynchronously=true" />

name="listGo"

maxElementsInMemory="1000"

eternal="false"

timeToIdleSeconds="300"

timeToLiveSeconds="300"

overflowToDisk="false"

memoryStoreEvictionPolicy="LRU">

class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"

properties="

replicateAsynchronously=true,

replicatePuts=true,

replicateUpdates=true,

replicateUpdatesViaCopy=true,

replicateRemovals=true " />

class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory"

properties="bootstrapAsynchronously=true" />

一个cache代表一个Ecache对象的定义,当然可以定义多个cache对象,针对不同的cache进行配置就行了。

3.开启

@SpringBootApplication

@EnableCaching

public class PrintshopwebApplication {

public static void main(String[] args) {

SpringApplication.run(PrintshopwebApplication.class, args);

}

}

4.service层

//查询方法,值注入名为userCache的echache对象中

@Cacheable(key = "1" , value = "userCache")

public List selList() {

return productDao.selList();

}

//当执行删除方法是,清空userCache中的缓存内容

@CacheEvict(value="userCache",allEntries=true,beforeInvocation=true)

public int delId(int productId) {

return productDao.delId(productId);

}

//根据id把缓存存到listGo中,缓存是以键值对的形式存在的

@Cacheable(key = "#productId" , value = "listGo")

public Product selId(int productId) {

return productDao.selId(productId);

}

这部分简单来说,你为了提升用户体验,查询所有产品信息,显示到页面,但是如果后台删除产品信息呢?CacheEvict就是在删除产品的时候,清空了userCache中的所有缓存内容,这样当用户再次刷新页面时,selList()方法就会去数据库查询了

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐