Problem statement - a simple RESTful service in Spring-Boot (2.0.1.RELEASE, and embedded Tomcat Server) returns response like,
HTTP/1.1 200
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Tue, 01 May 2018 00:33:04 GMT
7d
{the-json-response-anticipated}
0
After a search-and-find, I found that this is caused due to the header Transfer-Encoding: chunked
. Tried setting the following in application.properties
spring.http.encoding.force=false
spring.http.encoding.enabled=false
But, to no use. Any means to disable the same ?
Should I write explicit code to form a header with the parameter set asfalse
and set it to the header of the response ?