欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring中的@Cacheable 博客分类: spring-framework spring 

程序员文章站 2024-03-20 08:23:28
...
<div class="iteye-blog-content-contain" style="font-size: 14px"></div>
@Cacheable(value=”accountCache”),这个注释的意思是,当调用这个方法的时候,会从一个名叫 accountCache 的缓存中查询,如果没有,则执行实际的方法(即查询数据库),并将执行的结果存入缓存中,否则返回缓存中的对象。这里的缓存中的 key 就是参数 userName,value 就是 Account 对象。“accountCache”缓存是在 spring*.xml 中定义的名称。
@Cacheable(value="accountCache")// 使用了一个缓存名叫 accountCache   
public Account getAccountByName(String userName) {  
     // 方法内部实现不考虑缓存逻辑,直接实现业务  
     System.out.println("real query account."+userName);   
     return getFromDB(userName);   
}  
相关标签: spring