How to get clients actual address in java

319 Views Asked by At

We have an application which runs on multiple microservice systems.Lets consider a scenario where client requests something from microservice1 and microservice1 invokes an API on microservice2. In this scenario I want to get clients_ip_address in microservice2. Is there a provision where I can get client_ip_address from request_header ? Thanks Srumith.

1

There are 1 best solutions below

0
On

User getRemoteAddr() method of request.

ipAddress = request.getRemoteAddr();