当前位置: 首页>>代码示例>>Java>>正文


Java RestOperations.getForObject方法代码示例

本文整理汇总了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();
}
 
开发者ID:ctripcorp,项目名称:x-pipe,代码行数:21,代码来源:RetryableRestOperationsTest.java

示例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);
	}

}
 
开发者ID:ctripcorp,项目名称:x-pipe,代码行数:21,代码来源:RetryableRestOperationsTest.java

示例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);
	}
}
 
开发者ID:ctripcorp,项目名称:x-pipe,代码行数:13,代码来源:RetryableRestOperationsTest.java

示例4: doWithRestOperations

import org.springframework.web.client.RestOperations; //导入方法依赖的package包/类
@Override
public VaultUnsealStatus doWithRestOperations(RestOperations restOperations) {
	return restOperations.getForObject("sys/seal-status",
			VaultUnsealStatusImpl.class);
}
 
开发者ID:spring-projects,项目名称:spring-vault,代码行数:6,代码来源:VaultSysTemplate.java


注:本文中的org.springframework.web.client.RestOperations.getForObject方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。