我正在查看RedisLab first course for Java developer

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

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


什么是HostPort类,为什么找不到它?

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

最佳答案

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

 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;
}
}


确保您下载了代码源

10-06 07:20