RestTemplate는 자동으로 URLEcoding을 해준다.


GET방식으로 아래 URL호출시에... 특수문자 '=' URLEncoding을 해줄필요가 없다..

RestTemplate에서느 자동으로 해준다. 


http://localhost:9999/test?param=test=


RestTemplate restTemplate = new RestTemplate();

String result = restTemplate.getForObject("http://localhost:9999/test?param=test=", String.class);


'java' 카테고리의 다른 글

Spring Filter 순서 설정.  (0) 2018.01.11
Json 응답시 Null값을 ""으로 자동으로 바꾸기.  (0) 2017.06.21
Spring RestTemplate timeout 설정  (0) 2016.05.30
log4j 설정  (0) 2016.04.06
JPA 사용시 특정 컬럼만 UPDATE 하는 방법..  (0) 2016.04.01
Posted by 무세1
,