«resttemplate» 태그된 질문

27
Spring RestTemplate-요청 / 응답의 전체 디버깅 / 로깅을 활성화하는 방법은 무엇입니까?
나는 Spring RestTemplate을 오랫동안 사용 해 왔으며 요청과 응답을 디버깅하려고 할 때 지속적으로 벽에 부딪쳤다. 나는 기본적으로 "verbose"옵션이 켜진 상태에서 curl을 사용할 때와 같은 것을보고자합니다. 예를 들면 다음과 같습니다. curl -v http://twitter.com/statuses/public_timeline.rss 전송 된 데이터와 수신 된 데이터 (헤더, 쿠키 등 포함)를 모두 표시합니다. 다음과 같은 관련 게시물을 확인했습니다 : …


5
Spring RestTemplate 요청에 "Accept :"헤더를 설정하는 방법은 무엇입니까?
Accept:Spring 's 사용하여 요청에서 의 값을 설정하고 싶습니다 RestTemplate. 다음은 Spring 요청 처리 코드입니다. @RequestMapping( value= "/uom_matrix_save_or_edit", method = RequestMethod.POST, produces="application/json" ) public @ResponseBody ModelMap uomMatrixSaveOrEdit( ModelMap model, @RequestParam("parentId") String parentId ){ model.addAttribute("attributeValues",parentId); return model; } 그리고 여기 내 Java REST 클라이언트가 있습니다. public void post(){ MultiValueMap<String, String> params = …

4
Spring RestTemplate으로 양식 데이터를 POST하는 방법은 무엇입니까?
다음 (작동) curl 스 니펫을 RestTemplate 호출로 변환하고 싶습니다. curl -i -X POST -d "email=first.last@example.com" https://app.example.com/hr/email 이메일 매개 변수를 올바르게 전달하려면 어떻게합니까? 다음 코드는 404 Not Found 응답을 생성합니다. String url = "https://app.example.com/hr/email"; Map<String, String> params = new HashMap<String, String>(); params.put("email", "first.last@example.com"); RestTemplate restTemplate = new RestTemplate(); ResponseEntity<String> response = …

14
JSON의 RestTemplate을 통한 POST 요청
내 문제를 해결하는 방법에 대한 예를 찾지 못해서 도움을 요청하고 싶습니다. JSON의 RestTemplate 개체를 사용하여 POST 요청을 보낼 수 없습니다. 내가 얻을 때마다 : org.springframework.web.client.HttpClientErrorException : 415 지원되지 않는 미디어 유형 이 방식으로 RestTemplate을 사용합니다. ... restTemplate = new RestTemplate(); List<HttpMessageConverter<?>> list = new ArrayList<HttpMessageConverter<?>>(); list.add(new MappingJacksonHttpMessageConverter()); restTemplate.setMessageConverters(list); ... Payment …
126 java  json  spring  rest  resttemplate 

8
Spring RestTemplate 시간 초과
내 웹 응용 프로그램에서 사용하는 나머지 서비스에 대한 연결 시간 제한을 설정하고 싶습니다. Spring의 RestTemplate을 사용하여 내 서비스와 대화하고 있습니다. 나는 약간의 조사를 해왔고 시간 제한을 설정하기위한 것으로 생각되는 아래 xml (내 응용 프로그램 xml에서)을 찾아서 사용했습니다. 저는 Spring 3.0을 사용하고 있습니다. 또한 RestTemplate을 사용하여 Spring 웹 서비스에 대한 Timeout …

10
Spring Resttemplate 예외 처리
다음은 코드 스 니펫입니다. 기본적으로 오류 코드가 200이 아닌 경우 예외를 전파하려고합니다. ResponseEntity<Object> response = restTemplate.exchange(url.toString().replace("{version}", version), HttpMethod.POST, entity, Object.class); if(response.getStatusCode().value()!= 200){ logger.debug("Encountered Error while Calling API"); throw new ApplicationException(); } 그러나 서버에서 500 응답의 경우 예외가 발생합니다. org.springframework.web.client.HttpServerErrorException: 500 Internal Server Error at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:94) ~[spring-web-4.2.3.RELEASE.jar:4.2.3.RELEASE] 나머지 템플릿 교환 방법을 …

9
필드를 autowire 할 수 없음 : Spring 부트 애플리케이션의 RestTemplate
시작하는 동안 봄 부팅 응용 프로그램을 실행하는 동안 예외가 발생합니다. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private org.springframework.web.client.RestTemplate com.micro.test.controller.TestController.restTemplate; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.springframework.web.client.RestTemplate] found for dependency: expected at least 1 …

8
Spring restTemplate을 사용한 REST API의 기본 인증
나는 RestTemplate과 기본적으로 REST API에서도 완전히 새로운 것입니다. Jira REST API를 통해 내 애플리케이션에서 일부 데이터를 검색하고 싶지만 401 Unauthorised가 반환됩니다. jira rest api 문서 에 대한 기사를 찾았 지만 예제에서는 curl과 함께 명령 줄 방식을 사용하므로이를 Java로 다시 작성하는 방법을 모릅니다. 다시 작성하는 방법에 대한 제안이나 조언을 주시면 감사하겠습니다. …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.