You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StringHttpMessageConvertor is reading the InputStream but it's not closing it.
This keeps the file handle open and leaks file handles.
I am using @RequestPart in rest controller with string parameter.
the request is a multipart form data. Other Jackson converters are closing the streams.
The stream is pointing to a temporary file created by servlet api on tomcat.