使用 redisson 時遇到的問題

junbaor發表於2017-07-27

為了使用 redis 的分散式可重入鎖, 決定引入 redisson

<dependency>
    <groupId>org.redisson</groupId>
    <artifactId>redisson</artifactId>
    <version>3.4.4</version>
</dependency>    

程式碼

Config config = new Config();
config.setUseLinuxNativeEpoll(true);
config.useClusterServers().addNodeAddress("redis://127.0.0.1:6379");

RedissonClient redissonClient = Redisson.create(config);
RLock testLock = redissonClient.getLock("TEST_KEY");

testLock.lock();
testLock.lock();

問題一

java.lang.ClassNotFoundException: io.netty.channel.epoll.EpollEventLoopGroup

在 github 搜到 issues: https://github.com/redisson/r...

根據提示引入指定包後出現新問題

    <dependency>
        <groupId>io.netty</groupId>
        <artifactId>netty-transport-native-epoll</artifactId>
        <version>4.0.40.Final</version>
    </dependency>

問題二

Caused by: java.lang.IllegalStateException: Only supported on Linux
    at io.netty.channel.epoll.Native.loadNativeLibrary(Native.java:267)
    at io.netty.channel.epoll.Native.<clinit>(Native.java:64)

又嘗試引入 netty-all 還是一樣的錯

<!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-all</artifactId>
    <version>4.1.5.Final</version>
</dependency>

解決方案

凝視程式碼時發現了這句:config.setUseLinuxNativeEpoll(true);
好像跟錯誤有關, 嘗試著去除 netty 所有依賴後執行, 問題解決

總結

不要太相信官方的示例程式碼直接 copy , 要搞懂每句程式碼的含義。

相關文章