廣告聯播

2019年12月29日 星期日

Spring Boot 啟用 gzip 及 cache 提升網站速度

From: Polin Wei

WordPress 利用 gzip 與外掛提升網站速度 中有提到設定 gzip 壓縮,可以減少在主機與使用者端之間,資料傳輸量的減少,進而提升網站回應的速度,它的方法原則上是利用修改 .htaccess 的設定來達成,而 Spring Boot 是一個非常功能強大且靈活的系統,有很多功能只要透過設定就可以達成,在 gzip 的功能上只要在 application.properties 加上下列設定即可。


  1. # =================================
  2. # GZip compression, HTTP/2, caching
  3. # =================================
  4. # Enable response compression
  5. server.compression.enabled=true
  6. # The comma-separated list of mime types that should be compressed
  7. server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json,application/xml
  8. # Compress the response only if the response size is at least 1KB
  9. server.compression.min-response-size=1024

沒有留言:

張貼留言