Is it possible for a spring endpoint to abruptly close connection ?
Ex :
@GetMapping(/connectionClosedByPeerEndPoint)
String foo(){
//Close connection, and send no http response at all
}
or simply to close connection abrupltly even before reaching the endpoint, like mid http handshake(without FIN signal ?). What conf one would one need to do in order to achieve that.
The purpose of this is nothing.
Thanks in advance.