本文整理汇总了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);
}