Servlet 4.0 added Http Trailer(RFC 7230) supports, which is a specific collection of HTTP headers comes after response body.
It is useful in some case, such as chunked transfer encoding or implements some specific protocols.
The reading side, HttpServletRequest has a method isTrailerFieldsReady() to check if the trailer fields are available, if it returns true, the trailer fields can be read via getTrailerFields() method.
The writing side, HttpServletResponse has a method setTrailerFields, which accepts a Supplier as it's parameter.
An example of Http Trailer to handle chunked transfer encoding.