Создание пула джедаев порождает нарушение - PullRequest
0 голосов
/ 25 мая 2020

Я использую сервер Redis на машине Debian. Я использую на нем сеть BungeeCord. (BungeecordAPI)

Прежде всего это ошибка, которую я получаю:

[25.05 18:49:17.637] INFO: [Proxy-1] java.lang.LinkageError: loader constraint violation: when resolving method "org.slf4j.impl.StaticLoggerBinder.getLoggerFactory()Lorg/slf4j/ILoggerFactory;" the class loader (instance of net/md_5/bungee/api/plugin/PluginClassloader) of the current class, org/slf4j/LoggerFactory, and the class loader (instance of net/md_5/bungee/api/plugin/PluginClassloader) for the method's defining class, org/slf4j/impl/StaticLoggerBinder, have different Class objects for the type org/slf4j/ILoggerFactory used in the signature

Вот мой класс подключения:

import redis.clients.jedis.JedisPool;

public class JedisConnection {
    private static JedisPool pool;

    public static void openConnection() {
        pool = new JedisPool("localhost");
    }

    public static JedisPool getJedis() {
        return pool;
    }
}

Я звоню openConnection когда приложение запускается, но выдает ошибку, показанную ранее. Кто-нибудь знает откуда это?

...