本文整理匯總了Java中org.springframework.web.client.RestOperations.getForObject方法的典型用法代碼示例。如果您正苦於以下問題:Java RestOperations.getForObject方法的具體用法?Java RestOperations.getForObject怎麽用?Java RestOperations.getForObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.web.client.RestOperations
的用法示例。
在下文中一共展示了RestOperations.getForObject方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: retryableRestOperationsFailAndRetrySuccessTest
import org.springframework.web.client.RestOperations; //導入方法依賴的package包/類
@Test
public void retryableRestOperationsFailAndRetrySuccessTest() throws InterruptedException {
ctx.close();
RestOperations restOperations = RestTemplateFactory.createCommonsHttpRestTemplate(10, 100, 5000, 5000, 30,
RetryPolicyFactories.newRestOperationsRetryPolicyFactory(100));
Thread appStartThread = new Thread(new Runnable() {
@Override
public void run() {
logger.info(remarkableMessage("New SpringApplication"));
SpringApplication app2 = new SpringApplication(SimpleTestSpringServer.class);
app2.setBannerMode(Mode.OFF);
ctx = app2.run("");
ctx.start();
}
});
appStartThread.start();
String response = restOperations.getForObject(generateRequestURL("/test"), String.class);
assertEquals(targetResponse, response);
appStartThread.join();
}
示例2: retryableRestOperationsFailTest
import org.springframework.web.client.RestOperations; //導入方法依賴的package包/類
@Test
public void retryableRestOperationsFailTest() {
ctx.close();
int retryTimes = 10;
RetryPolicyFactory mockedRetryPolicyFactory = Mockito.mock(RetryPolicyFactory.class);
RetryPolicy mockedRetryPolicy = Mockito.mock(RetryPolicy.class);
when(mockedRetryPolicyFactory.create()).thenReturn(mockedRetryPolicy);
when(mockedRetryPolicy.retry(any(Throwable.class))).thenReturn(true);
RestOperations restOperations = RestTemplateFactory.createCommonsHttpRestTemplate(10, 100, 5000, 5000,
retryTimes, mockedRetryPolicyFactory);
try {
restOperations.getForObject(generateRequestURL("/test"), String.class);
} catch (Exception e) {
verify(mockedRetryPolicy, times(retryTimes)).retry(any(Throwable.class));
// check the type of original exception
assertTrue(e instanceof ResourceAccessException);
}
}
示例3: retryableRestOperationFailWithHttpServerErrorExceptionTest
import org.springframework.web.client.RestOperations; //導入方法依賴的package包/類
@Test
public void retryableRestOperationFailWithHttpServerErrorExceptionTest() {
RestOperations restOperations = RestTemplateFactory.createCommonsHttpRestTemplate(10, 100, 5000, 5000, 10,
RetryPolicyFactories.newRestOperationsRetryPolicyFactory(100));
try {
restOperations.getForObject(generateRequestURL("/httpservererrorexception"), String.class);
fail();
} catch (Exception e) {
assertTrue(e instanceof HttpServerErrorException);
}
}
示例4: doWithRestOperations
import org.springframework.web.client.RestOperations; //導入方法依賴的package包/類
@Override
public VaultUnsealStatus doWithRestOperations(RestOperations restOperations) {
return restOperations.getForObject("sys/seal-status",
VaultUnsealStatusImpl.class);
}