本文整理汇总了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;
}
}
示例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;
}
};
}
示例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();
}
示例5: setRegistration
import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Autowired(required = false)
public void setRegistration(Registration registration) {
this.registration = registration;
}
示例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());
}
示例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;
}
示例9: setStatus
import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public void setStatus(Registration registration, String status) {
updatedStatus.compareAndSet(null, status);
}
示例10: getStatus
import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public Object getStatus(Registration registration) {
return MYSTATUS;
}
示例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());
}
示例12: register
import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public void register(Registration registration) {
}
示例13: deregister
import org.springframework.cloud.client.serviceregistry.Registration; //导入依赖的package包/类
@Override
public void deregister(Registration registration) {
}