我的应用程序在jetty服务器上运行。我通过http://localhost:8080访问它。我的问题是Page.getCurrent().getWebBrowser().getAddress()
返回0:0:0:0:0:0:0:1
而不是像127.0.0.1
那样的内容,如javadoc中所述:
/**
* Gets the IP-address of the web browser. If the application is running
* inside a portlet, this method will return null.
*
* @return IP-address in 1.12.123.123 -format
*/
public String getAddress() {
return address;
}
任何人都知道这里发生了什么?