Examples of exchange()


Examples of org.springframework.web.client.RestTemplate.exchange()

    requestHeaders.set("Content-Length", Integer.toString(info.length));

    HttpEntity<byte[]> requestEntity = new HttpEntity<byte[]>(info,
        requestHeaders);

    ResponseEntity<String> response = httpClient.exchange(url,
        HttpMethod.PUT, requestEntity, String.class);

    log.info("Put " + info.length + " bytes from " + firstByte + " to "
        + (firstByte + info.length));
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

    Person person = new Person();
    person.setId(1L);
    person.setName("Joe");

    ResponseEntity<String> response =
        restTemplate.exchange("http://localhost:8080/person/{id}",
            HttpMethod.DELETE,
            new HttpEntity<Person>(person),
            String.class,
            1);
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

  @Test
  public void test() {
    RestTemplate restTemplate = new RestTemplate(new HttpComponentsClientHttpRequestFactory());
    try {
      restTemplate.exchange("/someUrl", HttpMethod.PATCH, null, null);
      fail("Expected exception");
    }
    catch (IllegalArgumentException ex) {
      assertEquals("HTTP method PATCH not available before Apache HttpComponents HttpClient 4.2", ex.getMessage());
    }
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

    Assume.assumeTrue(serverOnline);

    try {

      RestTemplate template = new RestTemplate();
      ResponseEntity<String> result = template.exchange(url + "/home.json", HttpMethod.GET, null,
          String.class);
      String body = result.getBody();
      Assert.assertTrue("No home page found", body != null && body.length() > 0);

    }
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

      .isRunning("${SERVER_URL:http://localhost:8080/spring-batch-admin-sample}");

  @Test
  public void testHomePage() throws Exception {
    RestTemplate template = new RestTemplate();
    ResponseEntity<String> result = template.exchange(serverRunning.getUrl() + "/home.json", HttpMethod.GET, null,
        String.class);
    JsonWrapper wrapper = new JsonWrapper(result.getBody());
    assertNotNull(wrapper.get("feed.resources"));
    assertNotNull(wrapper.get("feed.resources['/files'].uri"));
  }
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

  }

  @Test
  public void testJobsPage() throws Exception {
    RestTemplate template = new RestTemplate();
    ResponseEntity<String> result = template.exchange(serverRunning.getUrl() + "/jobs.json", HttpMethod.GET, null,
        String.class);
    JsonWrapper wrapper = new JsonWrapper(result.getBody());
    // System.err.println(wrapper);
    assertNotNull(wrapper.get("jobs.resource"));
    assertNotNull(wrapper.get("jobs.registrations.infinite.name"));
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

  @Test
  public void testJobConfigurationUpload() throws Exception {
    RestTemplate template = new RestTemplate();
    HttpEntity<String> request = new HttpEntity<String>(FileUtils.readFileToString(new File(
        "src/test/resources/test-job-context.xml")));
    ResponseEntity<String> result = template.exchange(serverRunning.getUrl() + "/job-configuration.json",
        HttpMethod.POST, request, String.class);
    JsonWrapper wrapper = new JsonWrapper(result.getBody());
    // System.err.println(wrapper);
    assertNotNull(wrapper.get("jobs.resource"));
    assertNotNull(wrapper.get("jobs.registrations['test-job'].name"));
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

  @Test
  public void testJobLaunch() throws Exception {

    RestTemplate template = new RestTemplate();
    ResponseEntity<String> result = template.exchange(serverRunning.getUrl() + "/jobs/job2.json?jobParameters=fail=true", HttpMethod.POST,
        null, String.class);
    JsonWrapper wrapper = new JsonWrapper(result.getBody());
    // System.err.println(wrapper);
    assertNotNull(wrapper.get("jobExecution.resource"));
    assertNotNull(wrapper.get("jobExecution.status"));
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

    final String resource = wrapper.get("jobExecution.resource", String.class);
    Poller<JsonWrapper> poller = new DirectPoller<JsonWrapper>(100L);
    Future<JsonWrapper> poll = poller.poll(new Callable<JsonWrapper>() {
      public JsonWrapper call() throws Exception {
        RestTemplate template = new RestTemplate();
        ResponseEntity<String> result = template.exchange(resource, HttpMethod.GET, null, String.class);
        JsonWrapper wrapper = new JsonWrapper(result.getBody());
        // System.err.println(wrapper);
        Map<?, ?> map = wrapper.get("jobExecution.stepExecutions", Map.class);
        return map.isEmpty() || wrapper.get("jobExecution.stepExecutions['job2.step1']['resource']") == null ? null
            : wrapper;
View Full Code Here

Examples of org.springframework.web.client.RestTemplate.exchange()

    JsonWrapper jobExecution = poll.get(500L, TimeUnit.MILLISECONDS);
    assertNotNull(jobExecution);
    // System.err.println(jobExecution);

    // Verify that there is a step execution in the result
    result = template.exchange(
        jobExecution.get("jobExecution.stepExecutions['job2.step1'].resource", String.class), HttpMethod.GET,
        null, String.class);
    wrapper = new JsonWrapper(result.getBody());
    // System.err.println(wrapper);
    assertNotNull(wrapper.get("stepExecution.id"));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.