Hi guys, my question is not regarding the kotlin but maybe someone could help me. I have a spring boot 2.2 project, I am logging execution time of all requests in my app(API). Everything is working fine, speed of business logic + jackson conversion is working perfect. But when I am emulating that the client aborts connection the jackson conversion is working really slow. However when I am converting my response(dto POKO) by hand for example
val mapper = ObjectMapper()
mapper.writeValueAsString(dto)
speed is the same as it was working without closing connection. Can someone help me with these, cause I can not find any information about behavior of the jackson when there is closed connection by client