HttpServletRequest req = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()).getRequest();
// String ip = req.getRemoteAddr();
//nginx에서 주는 ip를 사용해야함.
String ip = req.getHeader("X-Forwarded-For");
참고1 : https://coderanch.com/t/445496/request-getRemoteAddr
참고2 : https://www.lesstif.com/pages/viewpage.action?pageId=20775886
'Infra & Server Dev' 카테고리의 다른 글
[CentOS] 서버시간 동기화 time.bora.net (0) | 2017.01.12 |
---|---|
MariaDB, MySQL 이모티콘(\xF0\x9F\x98\x88) 저장시 에러 (5) | 2016.12.22 |
[Nginx] nignx + tomcat 연동시 header값을 못가져올때 (0) | 2016.11.08 |
[Tomcat]tomcat umask 설정 (2) | 2016.11.07 |
[IntelliJ]콘솔 log 필터 기능 grep console plugin 추가 (0) | 2016.11.04 |