For GET and HEAD requests, adds a Date:
header, if not already present.
This enables clients to determine age of a representation for caching purposes.
is in RFC1123 full date format.
To use: simply add server.addPostprocessor(new DateHeaderPostprocessor()); in your main() method.
Note that HEAD requests are not provided with a Date header via this postprocessor.
This is due to the fact that most external caches forward HEAD requests to the origin
server as a GET request and cache the result.