spring的cache怎么设置大小,或超时时间

J2EE 码拜 9年前 (2016-05-04) 2223次浏览
xml里的配置:

<bean id="cacheManager" class="org.springframework.cache.guava.GuavaCacheManager" />

缓存内容:

  @Cacheable(
            value = "cfileCache",
            key = "#id",
            unless = "#result == null")
    public CFile getCFile(int id) {
        Object[] args = new Object[] {id};
        List<CFile> list =
                this.rJDBCTemplate.query(
                        "select * from cile c left join cde s on c.id=s.id where c.id=?",
                        args, new CFileRowMapper());
        if (list.size() > 0) {
            return list.get(0);
        }
        return null;
    }
解决方案

40

题主能分享一下你的到的结论吗?你留的那个网址不在了

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明spring的cache怎么设置大小,或超时时间
喜欢 (0)
[1034331897@qq.com]
分享 (0)