728x90
InetAddress.getLocalHost();
public static String getServerIp() {
InetAddress local = null;
try {
local = InetAddress.getLocalHost();
}
catch ( UnknownHostException e ) {
e.printStackTrace();
}
if( local == null ) {
return "";
}
else {
String ip = local.getHostAddress();
return ip;
}
}
'Spring' 카테고리의 다른 글
[Spring] 파일 다운로드 구현 (0) | 2021.12.15 |
---|---|
컨트롤러 아닌곳에서 session 값 얻기 (0) | 2021.11.28 |
[Spring] WebSocket sockJS Q&A 실시간 알림 구현하기 (2) (3) | 2021.11.12 |
[Spring] WebSocket sockJS Q&A 실시간 알림 구현하기 (1) (0) | 2021.11.11 |
[Spring] javax.servlet.ServletException: No adapter for handler 해결방법 (0) | 2021.11.10 |