웹 서비스는 localhost로만 접근할 수 있고 IP 주소로 접근할 수 없는 해결 방법

발표 시 localhost + 포트로 발표하지 마십시오. 발표 시 다음 서버의 IP 주소를 가져옵니다.
InetAddress address = null;
try {
    address = InetAddress.getLocalHost();
} catch (UnknownHostException e) {
    e.printStackTrace();
}
String hostAddress = address.getHostAddress();
Endpoint.publish("http://"+hostAddress+":8089/test", new WebService());
System.out.println("");

좋은 웹페이지 즐겨찾기