APIGateway to handle websocket and route it to respective microservice using spring boot 3.3.1 and for client in flutter
I have a microservice application where I have APIGateway to accept all the incoming requests and redirect to the respective microservice after performing some validation checks. All is working fine until I am using http/https requests. But recently I have implemented a mobile application where I need a chatting option for this we implemented a flutter application and a microservice to handle the request. If I call the service directly, it works perfectly, but when I register my new microservice in APIGateway so that all requests come via APIGateway, it starts failing.
Spring boot gateway error: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection timed out: no further information: /192.168.1.4:5001
i have made 1 microservice user microservice. its application.yaml file looks something like this