在不同的Docker容器中运行的Spring Boot应用拒绝连接

我在同一主机上的3个容器中运行了三个应用程序。

CONTAINER ID    IMAGE                       COMMAND               PORTS

3f938111c1bf registration "java -jar registration.jar" 0.0.0.0:8030->8030/tcp

cb9c4782194e security "java -jar security.jar" 0.0.0.0:8020->8020/tcp

60005507a246 main "java -jar main.jar" 0.0.0.0:8000->8000/tcp

我可以使用Ajax请求从主应用程序访问安全应用程序的端点。

注册应用程序使用RestTemplate对象从Java方法中调用安全应用程序的终结点。该呼叫被安全应用拒绝,如下所示。

I/O error on POST request for "http://localhost:8020/security/register": Connect to localhost:8020 [localhost/127.0.0.1] failed: Connection refused (Connection refused); nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8020 [localhost/127.0.0.1] failed: Connection refused (Connection refused)

我无法确定问题。

我是码头工人的新手。我有可能遗漏某些东西吗?任何线索都将有所帮助。

非常感谢!

回答:

当您使用Docker容器/映像时,需要在其上设置配置。因此,您必须将localhost更改为您的容器名称。例如:

 http://localhost:8020/security/register

http://authentication:8020/security/register

以上是 在不同的Docker容器中运行的Spring Boot应用拒绝连接 的全部内容, 来源链接: utcz.com/qa/409148.html

回到顶部