JFinal 极速集成二级缓存 j2cache

项目集群的时候要用到二级缓存,趁着j2cache更新,极速集成一波!

代码地址:

https://gitee.com/xiaoxustudent/JFinal-vue-element-admin/tree/master/admin/src/main/java/com/sandu/j2cache

1.Maven引用:吐槽一下,真的很多jar,不过下面都是可选的,主要看你用什么,我这里直接从红薯代码https://gitee.com/ld/J2Cache/blob/master/core/pom.xml 里面复制过来了。

  1. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  2. <dependency>
  3. <groupId>net.oschina.j2cache</groupId>
  4. <artifactId>j2cache-core</artifactId>
  5. <version>2.1.0</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>net.sf.ehcache</groupId>
  9. <artifactId>ehcache</artifactId>
  10. <version>2.10.4</version>
  11. </dependency>
  12.  
  13. <dependency>
  14. <groupId>org.ehcache</groupId>
  15. <artifactId>ehcache</artifactId>
  16. <version>3.4.0</version>
  17. </dependency>
  18.  
  19. <dependency>
  20. <groupId>com.github.ben-manes.caffeine</groupId>
  21. <artifactId>caffeine</artifactId>
  22. <version>2.6.1</version>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>redis.clients</groupId>
  27. <artifactId>jedis</artifactId>
  28. <version>2.9.0</version>
  29. <type>jar</type>
  30. <scope>compile</scope>
  31. </dependency>
  32.  
  33. <dependency>
  34. <groupId>org.jgroups</groupId>
  35. <artifactId>jgroups</artifactId>
  36. <version>3.6.13.Final</version>
  37. </dependency>
  38.  
  39. <dependency>
  40. <groupId>de.ruedigermoeller</groupId>
  41. <artifactId>fst</artifactId>
  42. <version>2.53</version>
  43. </dependency>
  44.  
  45. <dependency>
  46. <groupId>com.esotericsoftware</groupId>
  47. <artifactId>kryo-shaded</artifactId>
  48. <version>3.0.0</version>
  49. </dependency>
  50.  
  51. <dependency>
  52. <groupId>org.xerial.snappy</groupId>
  53. <artifactId>snappy-java</artifactId>
  54. <version>1.1.4</version>
  55. </dependency>
  56.  
  57. <dependency>
  58. <groupId>commons-beanutils</groupId>
  59. <artifactId>commons-beanutils</artifactId>
  60. <version>1.9.3</version>
  61. </dependency>

2.写个JFinal Plugin

  1. package com.sandu.j2cache;import com.jfinal.plugin.IPlugin;import net.oschina.j2cache.CacheChannel;import net.oschina.j2cache.J2Cache;public class J2CachePlugin implements IPlugin {
  2.     private static CacheChannel cache;    @Override
  3.     public boolean start() {
  4.         System.setProperty("java.net.preferIPv4Stack", "true"); //Disable IPv6 in JVM
  5.         cache = J2Cache.getChannel();
  6.         J2CacheKit.init(cache);        return true;
  7.     }    @Override
  8.     public boolean stop() {
  9.         cache.close();        return true;
  10.     }
  11. }

cache = J2Cache.getChannel() 拿到这个cache就完事了,可以调用各种api,这里我参考JFinal的cacheKit
小小封装了一个J2CacheKit,

3.配置文件

j2cache.properties  //这个必须的,里面有各种配置,我L1用了ehcache,详情看代码

j2cache.L1.provider_class = ehcache
j2cache.L2.provider_class = redis

network.xml //广播用的,不用管

ehcache.xml //ehcache配置文件,如果你用ehcache3,就用ehcache3.xml

4.测试,先开了redis服务

  1. package com.sandu.j2cache;import java.io.IOException;import net.oschina.j2cache.J2Cache;public class J2CacheTest {
  2. public static void main(String[] args) throws IOException { new J2CachePlugin().start();
  3. String str1 = "高阁客竟去,小园花乱飞。参差连曲陌,迢递送斜晖。";
  4. String str2 = "肠断未忍扫,眼穿仍欲归。芳心向春尽,所得是沾衣。";
  5. String key1 = "ab1"; 
  6. String key2 = "ab2"; 
  7. String cacheName = "example";
  8. //读写
  9. System.out.println("写入:" + str1);
  10. System.out.println("写入:" + str2);
  11. J2CacheKit.put(cacheName, key1, str1);
  12. J2CacheKit.put(cacheName, key2, str2);
  13. System.out.println("获取key1:" + J2CacheKit.get(cacheName, key1));
  14. System.out.println("获取key2:" + J2CacheKit.get(cacheName, key2));
  15. // //删除
  16. J2CacheKit.remove(cacheName, key1);
  17. System.out.println("删除:" + key1);
  18. System.out.println("删除后输出:"+key1 +  J2CacheKit.get(cacheName, key1));
  19. System.out.println("删除后输出:"+key2 +  J2CacheKit.get(cacheName, key2));//
  20. //删除全部
  21. J2CacheKit.removeAll(cacheName);
  22. J2Cache.getChannel().clear(cacheName);
  23. System.out.println("删除全部数据:");
  24. System.out.println("删除后输出:"+key1 +  J2CacheKit.get(cacheName, key1));
  25. System.out.println("删除后输出:"+key2 +  J2CacheKit.get(cacheName, key2));
  26. }
  27.  
  28. }

  1. [main] INFO net.oschina.j2cache.J2Cache - Load J2Cache Config File : [/j2cache.properties].
  2. [main] INFO net.oschina.j2cache.CacheProviderHolder - Using L1 CacheProvider : net.oschina.j2cache.ehcache.EhCacheProvider
  3. [main] INFO net.oschina.j2cache.CacheProviderHolder - Using L2 CacheProvider : net.oschina.j2cache.redis.RedisCacheProvider
  4. [main] INFO net.oschina.j2cache.redis.RedisPubSubClusterPolicy - Connected to redis channel:j2cache, time 74 ms.
  5. [main] INFO net.oschina.j2cache.J2Cache - Using cluster policy : net.oschina.j2cache.redis.RedisPubSubClusterPolicy
  6. 写入:高阁客竟去,小园花乱飞。参差连曲陌,迢递送斜晖。
  7. 写入:肠断未忍扫,眼穿仍欲归。芳心向春尽,所得是沾衣。
  8. [main] INFO net.oschina.j2cache.util.SerializationUtils - Using Serializer -> [fst:net.oschina.j2cache.util.FSTSerializer]
  9. 获取key1:高阁客竟去,小园花乱飞。参差连曲陌,迢递送斜晖。
  10. 获取key2:肠断未忍扫,眼穿仍欲归。芳心向春尽,所得是沾衣。
  11. 删除:ab1
  12. 删除后输出:ab1null
  13. 删除后输出:ab2肠断未忍扫,眼穿仍欲归。芳心向春尽,所得是沾衣。
  14. 删除全部数据:
  15. 删除后输出:ab1null
  16. 删除后输出:ab2null

5.总结

真正的代码只有J2CachePlugin和额外封装的J2CacheKit,另外j2cache 2.0版本 caffeine缓存下clear不生效,已反馈,在以后版本修复了。


评论区

JFinal

2018-01-08 14:38

建议做成一个独立的项目叫: jfinal-j2cache, 然后开源出来
j2cache 确实牛逼, oschina 每天几千万的访问量用的就是这个方案,简洁方便

JFinal

2018-01-08 14:42

我发现对 ehcache 有两个 dependency 依赖,是啥情况?

小徐同学

2018-01-08 15:22

@JFinal 一个ehcache2 一个ehcache3 用了 2 可以去掉3

小徐同学

2018-01-08 15:23

@JFinal 几十行代码哪好意思弄一个项目

JFinal

2018-01-08 15:31

@小徐同学 代码少能解决问,才证明水平高,开源出来发布到 maven 中心库,用起来多方便

livem

2018-01-11 20:48

http://www.oschina.net/news/92309/j2cache-2-2-2-bugfix
红薯刚刚修复了一个大 bug

小徐同学

2018-01-11 21:26

@livem 嗯 我知道,那是新版本2.1的bug

zhangtianxiao

2018-01-13 20:52

过来捧个场

BirdZhang

2018-02-28 11:05

为什么还是用的Ehcache? https://gitee.com/xiaoxustudent/JFinal-vue-element-admin/blob/b8b5fdc4b02a6321786ad478eec7a42ae21dd27e/admin/src/main/java/com/sandu/MainConfig.java#L71
https://gitee.com/xiaoxustudent/JFinal-vue-element-admin/blob/b8b5fdc4b02a6321786ad478eec7a42ae21dd27e/admin/src/main/java/com/sandu/admin/login/LoginService.java#L59

小徐同学

2018-03-01 10:14

@BirdZhang 因为没改呀,要改很简单啊,搜索cacheKit替换就可以了

easymbol

2018-11-16 21:23

如何调用他的广播模式呢

maxwade

2019-03-29 10:57

这个j2cacheplugin是替代redisplugin的。

热门分享

扫码入社