简体   繁体   中英

Spring servlet for serving static content?

I'm wondering what's the Spring way of serving static files. It should support:

  • Written in a Springy way!
  • Simple and reliable
  • Support for resuming downloads (eg. Range request header, and Accept-Ranges, ETag and Last-Modified response headers).
  • Support for client-side caching (eg. If-None-Match and If-Modified-Since request headers, and HEAD requests for ETag, Last-Modified, and Expires response headers
  • Support for GZIP compression (eg. Accept-Encoding: gzip header)

Something like the following, but using the idioms of Spring 3...

You can make a @Controller with @RequestMapping("/static/{resourceName} and use the same logic as in BalusC's Servlet

As for gzip - use Tomcat's or Apache's configuration options.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM