HTTPServletRequest Object has a method called servletRequest.getRemoteAddr(). This method can be used to get the ip address of the client.
String ipAddress = request.getRemoteAddr(); System.out.print(ipAddress);