Bir Spring Boot REST uygulaması var (1.5.6.RELEASE). Gzip sıkıştırma gelen ve giden istiyorum. Bu belgelerin https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html gereğince ben Bir Spring Boot REST uygulamasında gzip isteklerinin işlenmesi
server.compression.enabled=true
server.compression.mime-types=...
belirledik Ama bu sadece benim hizmetinden yanıt Gzip Sıkıştırma için geçerli görünmektedir (ve bu doc "yanıtı sıkıştırma etkindir # demektir." gerçekte ne diyor).
Sorunum, gelen gzipli isteklerin sıkıştırılmaması, JSON ayrıştırma hatalarıyla sonuçlanmasıdır.
Spring Boot uygulamasında dekompresyon isteğini nasıl etkinleştirebileceğimi bilen var mı?
DÜZENLEME Bir örnek:
POM pasajı:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
Kontrol kodu:
@RestController
public class Controller {
@RequestMapping(value = "/", method = RequestMethod.POST, consumes = "application/json")
public String post(@RequestBody Map<String, String> request) {
return request.get("key");
}
}
testi kullanılarak kıvırmak:
$ echo '{ "key":"hello" }' > body
$ curl -X POST -H "Content-Type: application/json" --data-binary @body http://localhost:8080 # prints 'hello'
$ echo '{ "key":"hello" }' | gzip > body.gz
$ curl -X POST -H "Content-Type: application/json" -H "Content-Encoding: gzip" --data-binary @body.gz http://localhost:8080 # fails
gzip'lenmiş çağrı iletisiyle başarısız olur:
{"timestamp":1505843443456,"status":400,"error":"Bad Request","exception":"org.springframework.http.converter.HttpMessageNotReadableException","message":"JSON parse error: Illegal character ((CTRL-CHAR, code 31)): only regular white space (\\r, \\n, \\t) is allowed between tokens; nested exception is com.fasterxml.jackson.core.JsonParseException: Illegal character ((CTRL-CHAR, code 31)): only regular white space (\\r, \\n, \\t) is allowed between tokens\n at [Source: [email protected]; line: 1, column: 2]","path":"/"}
Sıkıştırılmış istekleri nasıl gönderirsiniz? – diginoise
https://stackoverflow.com/q/20507007/46673 adresine bakın, https://stackoverflow.com/q/16638345/466738, https://serverfault.com/questions/56700/is-it-possible-to- request-http-sıkıştırma istekleri için –
@diginoise İstemciyi denetlemiyorum – B255