Springboot启动后只能使用127.0.0.1访问

Posted 树上的疯子^

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot启动后只能使用127.0.0.1访问相关的知识,希望对你有一定的参考价值。

启动spring boot后,127.0.0.1、localhost都可以正常访问,但是局域网IP无法访问。

原因是:

server.address = 127.0.0.1

改成:

server.address = 0.0.0.0

具体的原因是因为127.0.0.1可能会使用ipv6,修改为0.0.0.0可改为ipv4

以上是关于Springboot启动后只能使用127.0.0.1访问的主要内容,如果未能解决你的问题,请参考以下文章

Springboot启动后只能使用127.0.0.1访问

springboot整合jedis

SpringBoot项目启动后访问任意接口都会跳转到一个莫名其妙的login登录页面

springboot启动成功但是debug出现后面的Connected to the target VM, address: '127.0.0.1:53340', transport:

linux 小常识

springboot hikari 连接池 在启动时未初始化数据库连接问题