guava的使用方法有哪些

2023-06-26

这篇文章主要介绍“guava的使用方法有哪些”,在日常操作中,相信很多人在guava的使用方法有哪些问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”guava的使用方法有哪些”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

//初始化缓存
cache =
                CacheBuilder.newBuilder()
                        .maximumSize(picInfoCacheMaximumSize)
                        .expireAfterAccess(picInfoCacheExpireAfterAccess, TimeUnit.SECONDS)
                        .removalListener(new MyRemovalListener())
                        .build();

//监听删除
  private class MyRemovalListener implements RemovalListener<String, String> {
        [@Override](https://my.oschina.net/u/1162528)
        public void onRemoval(RemovalNotification<String, String> notification) {
            String tips = String.format("key=%s,value=%s,reason=%s", notification.getKey(), notification.getValue(), notification.getCause());
            log.info("  removalListener  " + tips);
        }
    }

到此,关于“guava的使用方法有哪些”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注本站网站,小编会继续努力为大家带来更多实用的文章!

《guava的使用方法有哪些.doc》

下载本文的Word格式文档,以方便收藏与打印。