代码之家  ›  专栏  ›  技术社区  ›  Ori Marko

绝地-简单程序缺少主机端口类

  •  0
  • Ori Marko  · 技术社区  · 5 年前

    RedisLab first course for Java developer ,

    在Hello World程序中他们正在使用 HostPort 这是找不到的 jedis :

    Jedis jedis = new Jedis(HostPort.getRedisHost(), HostPort.getRedisPort());
    

    是什么 同学们,为什么我找不到它?

    HostAndPort ,但它没有这些方法或类似的getPort静态方法

    0 回复  |  直到 5 年前
        1
  •  1
  •   asfmlr    5 年前

    在代码中,您有一个构造函数来输入这些值

     public HostAndPort(String host, int port)
    

    例如,我想您可以使用localhost和端口6379,这是redis的公共端口

    在redislabs的代码示例中,您有一个类:

    package com.redislabs.university.RU102J;
    
    public class HostPort {
    
    final private static String defaultHost = "localhost";
    
    final private static Integer defaultPort = 6379;
    
    static {
    }
    
    public static String getRedisHost() {
        return defaultHost;
    }
    
    public static Integer getRedisPort() {
        return defaultPort;
    }
    }