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


Java Registration类代码示例

本文整理汇总了Java中org.springframework.cloud.client.serviceregistry.Registration的典型用法代码示例。如果您正苦于以下问题:Java Registration类的具体用法?Java Registration怎么用?Java Registration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Registration类属于org.springframework.cloud.client.serviceregistry包,在下文中一共展示了Registration类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getRegistration

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Bean public Registration getRegistration() {
	return new Registration() {
		@Override
		public String getServiceId() {
			return "from-registration";
		}

		@Override
		public String getHost() {
			return null;
		}

		@Override
		public int getPort() {
			return 0;
		}

		@Override
		public boolean isSecure() {
			return false;
		}

		@Override
		public URI getUri() {
			return null;
		}

		@Override
		public Map<String, String> getMetadata() {
			return null;
		}
	};
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-sleuth,代码行数:34,代码来源:DefaultEndpointLocatorConfigurationTest.java

示例2: DefaultEndpointLocator

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
public DefaultEndpointLocator(Registration registration, ServerProperties serverProperties,
		Environment environment, ZipkinProperties zipkinProperties, InetUtils inetUtils) {
	this.registration = registration;
	this.serverProperties = serverProperties;
	this.environment = environment;
	this.zipkinProperties = zipkinProperties;
	if (inetUtils == null) {
		this.inetUtils = new InetUtils(new InetUtilsProperties());
	} else {
		this.inetUtils = inetUtils;
	}
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-sleuth,代码行数:13,代码来源:DefaultEndpointLocator.java

示例3: registration

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Bean
Registration registration() {
	return new Registration() {
		@Override
		public String getServiceId() {
			return "testRegistration1";
		}

		@Override
		public String getHost() {
			return null;
		}

		@Override
		public int getPort() {
			return 0;
		}

		@Override
		public boolean isSecure() {
			return false;
		}

		@Override
		public URI getUri() {
			return null;
		}

		@Override
		public Map<String, String> getMetadata() {
			return null;
		}
	};
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-commons,代码行数:35,代码来源:ServiceRegistryEndpointTests.java

示例4: testLocalServiceExceptionIgnored

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Test
public void testLocalServiceExceptionIgnored() {
	given(this.discovery.getServices()).willReturn(Collections.<String>emptyList());

	DiscoveryClientRouteLocator routeLocator = new DiscoveryClientRouteLocator("/",
			this.discovery, this.properties, (Registration)null);

	// if no exception is thrown in constructor, this is a success
	routeLocator.locateRoutes();
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-netflix,代码行数:11,代码来源:DiscoveryClientRouteLocatorTests.java

示例5: setRegistration

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Autowired(required = false)
public void setRegistration(Registration registration) {
    this.registration = registration;
}
 
开发者ID:oktadeveloper,项目名称:jhipster-microservices-example,代码行数:5,代码来源:CacheConfiguration.java

示例6: should_throw_exception_when_no_registration_is_present

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Test(expected = IllegalArgumentException.class)
public void should_throw_exception_when_no_registration_is_present() throws Exception {
	new ServiceInstanceHostLocator((Registration)null, new ZipkinProperties());
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-sleuth,代码行数:5,代码来源:ServiceInstanceHostLocatorTest.java

示例7: registration

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Bean public Registration registration() {
	return Mockito.mock(Registration.class);
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-sleuth,代码行数:4,代码来源:ServiceInstanceHostLocatorConfigurationTest.java

示例8: setRegistration

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
public void setRegistration(Registration registration) {
	this.registration = registration;
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-commons,代码行数:4,代码来源:ServiceRegistryEndpoint.java

示例9: setStatus

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public void setStatus(Registration registration, String status) {
	updatedStatus.compareAndSet(null, status);
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-commons,代码行数:5,代码来源:ServiceRegistryEndpointTests.java

示例10: getStatus

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public Object getStatus(Registration registration) {
	return MYSTATUS;
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-commons,代码行数:5,代码来源:ServiceRegistryEndpointTests.java

示例11: testIgnoredLocalServiceByDefault

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Test
public void testIgnoredLocalServiceByDefault() {
	given(this.discovery.getServices())
			.willReturn(Collections.singletonList(MYSERVICE));
	Registration registration = new Registration() {
		@Override
		public String getServiceId() {
			return MYSERVICE;
		}

		@Override
		public String getHost() {
			return "localhost";
		}

		@Override
		public int getPort() {
			return 80;
		}

		@Override
		public boolean isSecure() {
			return false;
		}

		@Override
		public URI getUri() {
			return null;
		}

		@Override
		public Map<String, String> getMetadata() {
			return null;
		}
	};

	DiscoveryClientRouteLocator routeLocator = new DiscoveryClientRouteLocator("/",
			this.discovery, this.properties, registration);

	LinkedHashMap<String, ZuulRoute> routes = routeLocator.locateRoutes();
	ZuulRoute actual = routes.get("/**");
	assertNull("routes didn't ignore " + MYSERVICE, actual);

	List<Route> routesMap = routeLocator.getRoutes();
	assertNotNull("routesMap was null", routesMap);
	assertTrue("routesMap was empty", routesMap.isEmpty());
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-netflix,代码行数:48,代码来源:DiscoveryClientRouteLocatorTests.java

示例12: register

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public void register(Registration registration) {

}
 
开发者ID:spring-cloud,项目名称:spring-cloud-commons,代码行数:5,代码来源:ServiceRegistryEndpointTests.java

示例13: deregister

import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public void deregister(Registration registration) {

}
 
开发者ID:spring-cloud,项目名称:spring-cloud-commons,代码行数:5,代码来源:ServiceRegistryEndpointTests.java


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