InetAddress.getLocalHost().getHostAddress(); 127.0.0.1

web 项目中 需要或者服务器的ip地址   于是使用了 InetAddress.getLocalHost().getHostAddress();方法来 获取ip,

直接运行! ok !  没问题 能正确获取到主机的ip地址 (192.168.100.x)

部署到服务器上去, 也正常,但运行了一段时间后(一周左右吧)得到的地址确实127.0.0.1(换回地址)。 我去!!!!

重启有正常了! 高兴ing   heh    但一周后  有出现了这个问题  为啥呢 /kb   不解!

为啥重启后就行了呢  我是除了重启 啥操作也没做啊 

后来翻看了下帮助文档 说好像是安全管理器的原因

If there is a security manager, its checkConnect method is called with the local host name and -1 as its arguments to see if the operation is allowed.

If the operation is not allowed, an InetAddress representing the loopback address is returned.


可能是安全管理器阻止了该操作, 所以返回了回环地址。

但为什么会阻止呢? 什么时候开始阻止的呢 ?  

先做个笔记 留着以后查看



你可能感兴趣的:(JAVA)