Spring 启动 Dockerize 项目和 redis 容器得到 java.net.ConnectException: Connection refused (Connection refused)

Spring Boot Dockerize project and redis container getting java.net.ConnectException: Connection refused (Connection refused)

我正在另一个容器中使用 Dockerize spring 启动应用程序和 redis。我运行这样的redis容器:docker run -d --name redis -p 6379:6379 redis

当我从 id 运行 我的应用程序时,我没有问题,我的应用程序能够连接到 redis。

但是当我 运行 我的应用程序作为容器时:docker 运行 -p 8080:8080 shortenurl,我遇到了下一个问题:java.net.ConnectException: Connection refused (Connection refused).

这是我的 pom.xml:

<groupId>com.neueda.shorturl</groupId>
    <artifactId>shortenurl</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>shortenurl</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
        <finalName>shortenurl</finalName>
    </build>

这是我的 application.yml 配置:

spring:
  application:
    name: shortenurl-neueda-assignment
  redis:
    host: localhost
    port: 6379

有什么想法吗?

谢谢。

那是因为,一旦您 运行 您的应用程序位于两个不同的容器中,它们就不再位于同一网络中。除非您在容器中,否则您无法访问本地主机或任​​何环回 IP。容器内只有本地主机。但是如果两个容器都在同一个网络中,您可以通过容器名称访问容器。

因此,您应该编排一个 docker 网络并在该网络中部署两个容器,然后每个其他容器都能够通过它们的容器名称解析主机。

试试这个;

$ docker network create test-netw
$ docker run --net test-netw -d --name redis -p 6379:6379 redis

并在 aplication.yml 文件中更改 Redis 主机;

spring:
  redis:
    host: redis
    port: 6379
    jedis:
      pool:
        max-active: 7
        max-idle: 7
        min-idle: 2

也添加这个配置;

@Bean
JedisPool jedisPool(RedisProperties redisProperties) {
    return new JedisPool(new JedisPoolConfig(), redisProperties.getHost(), redisProperties.getPort());
}

而不是使用这个;

Jedis jedis = new Jedis();

使用这个;

Jedis jedis = pool.getResource();

最后一步是;

$ docker run -p 8080:8080 --net test-netw shortenurl