1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

Optimize modular implementation

This commit is contained in:
mercyblitz 2019-03-28 22:13:07 +08:00
parent 728c01991e
commit ee91dfa9f5
2 changed files with 82 additions and 54 deletions

View File

@ -30,6 +30,7 @@ import org.springframework.cloud.alibaba.dubbo.metadata.DubboProtocolConfigSuppl
import org.springframework.cloud.alibaba.dubbo.metadata.repository.DubboServiceMetadataRepository; import org.springframework.cloud.alibaba.dubbo.metadata.repository.DubboServiceMetadataRepository;
import org.springframework.cloud.alibaba.dubbo.metadata.resolver.DubboServiceBeanMetadataResolver; import org.springframework.cloud.alibaba.dubbo.metadata.resolver.DubboServiceBeanMetadataResolver;
import org.springframework.cloud.alibaba.dubbo.metadata.resolver.MetadataResolver; import org.springframework.cloud.alibaba.dubbo.metadata.resolver.MetadataResolver;
import org.springframework.cloud.alibaba.dubbo.registry.event.ServiceInstancePreRegisteredEvent;
import org.springframework.cloud.alibaba.dubbo.service.DubboGenericServiceFactory; import org.springframework.cloud.alibaba.dubbo.service.DubboGenericServiceFactory;
import org.springframework.cloud.alibaba.dubbo.service.DubboMetadataConfigServiceExporter; import org.springframework.cloud.alibaba.dubbo.service.DubboMetadataConfigServiceExporter;
import org.springframework.cloud.alibaba.dubbo.service.DubboMetadataConfigServiceProxy; import org.springframework.cloud.alibaba.dubbo.service.DubboMetadataConfigServiceProxy;
@ -90,12 +91,18 @@ public class DubboMetadataAutoConfiguration {
publishServiceRestMetadata(serviceBean); publishServiceRestMetadata(serviceBean);
} }
private void publishServiceRestMetadata(ServiceBean serviceBean) { /**
dubboMetadataConfigService.publishServiceRestMetadata(metadataResolver.resolveServiceRestMetadata(serviceBean)); * On Dubbo Service registering in Spring Cloud Registry
*/
@EventListener(ServiceInstancePreRegisteredEvent.class)
public void onServiceInstancePreRegistered() {
dubboMetadataConfigServiceExporter.export();
} }
@EventListener(ApplicationReadyEvent.class) @EventListener(ApplicationReadyEvent.class)
public void onApplicationReady() { public void onApplicationReady() {
// Maybe invoke again if used Spring Cloud Registry,
// but don't worry.
dubboMetadataConfigServiceExporter.export(); dubboMetadataConfigServiceExporter.export();
} }
@ -108,4 +115,8 @@ public class DubboMetadataAutoConfiguration {
public void onContextClosed() { public void onContextClosed() {
dubboMetadataConfigServiceExporter.unexport(); dubboMetadataConfigServiceExporter.unexport();
} }
private void publishServiceRestMetadata(ServiceBean serviceBean) {
dubboMetadataConfigService.publishServiceRestMetadata(metadataResolver.resolveServiceRestMetadata(serviceBean));
}
} }

View File

@ -23,19 +23,19 @@ import com.ecwid.consul.v1.agent.model.NewService;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.AutoConfigureOrder;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.cloud.alibaba.dubbo.metadata.repository.DubboServiceMetadataRepository; import org.springframework.cloud.alibaba.dubbo.metadata.repository.DubboServiceMetadataRepository;
import org.springframework.cloud.alibaba.dubbo.registry.DubboServiceRegistrationEventPublishingAspect; import org.springframework.cloud.alibaba.dubbo.registry.DubboServiceRegistrationEventPublishingAspect;
import org.springframework.cloud.alibaba.dubbo.registry.event.ServiceInstancePreRegisteredEvent; import org.springframework.cloud.alibaba.dubbo.registry.event.ServiceInstancePreRegisteredEvent;
import org.springframework.cloud.alibaba.dubbo.service.DubboMetadataConfigServiceExporter;
import org.springframework.cloud.alibaba.dubbo.util.JSONUtils; import org.springframework.cloud.alibaba.dubbo.util.JSONUtils;
import org.springframework.cloud.client.ServiceInstance; import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.serviceregistry.Registration; import org.springframework.cloud.client.serviceregistry.Registration;
import org.springframework.cloud.client.serviceregistry.ServiceRegistry; import org.springframework.cloud.client.serviceregistry.ServiceRegistry;
import org.springframework.cloud.consul.serviceregistry.ConsulRegistration; import org.springframework.cloud.consul.serviceregistry.ConsulRegistration;
import org.springframework.context.ApplicationListener; import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import; import org.springframework.context.annotation.Import;
import org.springframework.context.event.EventListener; import org.springframework.context.event.EventListener;
@ -47,6 +47,8 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import static org.springframework.cloud.alibaba.dubbo.autoconfigure.DubboServiceRegistrationAutoConfiguration.CONSUL_AUTO_CONFIGURATION_CLASS_NAME;
import static org.springframework.cloud.alibaba.dubbo.autoconfigure.DubboServiceRegistrationAutoConfiguration.EUREKA_AUTO_CONFIGURATION_CLASS_NAME;
import static org.springframework.cloud.alibaba.dubbo.registry.SpringCloudRegistry.DUBBO_URLS_METADATA_PROPERTY_NAME; import static org.springframework.cloud.alibaba.dubbo.registry.SpringCloudRegistry.DUBBO_URLS_METADATA_PROPERTY_NAME;
/** /**
@ -57,75 +59,87 @@ import static org.springframework.cloud.alibaba.dubbo.registry.SpringCloudRegist
@Configuration @Configuration
@Import({DubboServiceRegistrationEventPublishingAspect.class}) @Import({DubboServiceRegistrationEventPublishingAspect.class})
@ConditionalOnProperty(value = "spring.cloud.service-registry.auto-registration.enabled", matchIfMissing = true) @ConditionalOnProperty(value = "spring.cloud.service-registry.auto-registration.enabled", matchIfMissing = true)
@AutoConfigureAfter(name = {
EUREKA_AUTO_CONFIGURATION_CLASS_NAME,
CONSUL_AUTO_CONFIGURATION_CLASS_NAME,
"org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration"
}, value = {
DubboMetadataAutoConfiguration.class
})
public class DubboServiceRegistrationAutoConfiguration { public class DubboServiceRegistrationAutoConfiguration {
private static final String CONSUL_REGISTRATION_CLASS_NAME = public static final String EUREKA_AUTO_CONFIGURATION_CLASS_NAME =
"org.springframework.cloud.netflix.eureka.EurekaClientAutoConfiguration";
public static final String CONSUL_AUTO_CONFIGURATION_CLASS_NAME =
"org.springframework.cloud.consul.serviceregistry.ConsulAutoServiceRegistrationAutoConfiguration";
private static final String CONSUL_AUTO_REGISTRATION_CLASS_NAME =
"org.springframework.cloud.consul.serviceregistry.ConsulAutoRegistration"; "org.springframework.cloud.consul.serviceregistry.ConsulAutoRegistration";
private static final String EUREKA_REGISTRATION_CLASS_NAME = private static final Logger logger = LoggerFactory.getLogger(DubboServiceRegistrationAutoConfiguration.class);
"org.springframework.cloud.netflix.eureka.serviceregistry.EurekaAutoServiceRegistration";
private final Logger logger = LoggerFactory.getLogger(getClass());
@Autowired
private ServiceRegistry serviceRegistry;
@Autowired @Autowired
private DubboServiceMetadataRepository dubboServiceMetadataRepository; private DubboServiceMetadataRepository dubboServiceMetadataRepository;
@Autowired
private DubboMetadataConfigServiceExporter dubboMetadataConfigServiceExporter;
@Autowired @Autowired
private JSONUtils jsonUtils; private JSONUtils jsonUtils;
private Registration registration;
@ConditionalOnClass(name = EUREKA_REGISTRATION_CLASS_NAME)
@Bean
public ApplicationListener<ServiceBeanExportedEvent> onServiceBeanExportedInEureka() {
return event -> {
reRegister();
};
}
private void reRegister() {
Registration registration = this.registration;
if (registration == null) {
return;
}
serviceRegistry.register(registration);
}
// Event-Handling
@EventListener(ServiceInstancePreRegisteredEvent.class) @EventListener(ServiceInstancePreRegisteredEvent.class)
public void onServiceInstancePreRegistered(ServiceInstancePreRegisteredEvent event) { public void onServiceInstancePreRegistered(ServiceInstancePreRegisteredEvent event) {
dubboMetadataConfigServiceExporter.export();
Registration registration = event.getSource(); Registration registration = event.getSource();
attachURLsIntoMetadata(registration); attachURLsIntoMetadata(registration);
setRegistration(registration);
} }
private void setRegistration(Registration registration) { @Configuration
this.registration = registration; @ConditionalOnBean(name = EUREKA_AUTO_CONFIGURATION_CLASS_NAME)
@AutoConfigureOrder
static class EurekaConfiguration {
@Autowired
private ApplicationContext applicationContext;
@Autowired
private ServiceRegistry serviceRegistry;
private volatile Registration registration;
@EventListener(ServiceBeanExportedEvent.class)
public void onServiceBeanExported() {
reRegister();
}
private void reRegister() {
if (registration == null) {
return;
}
serviceRegistry.register(registration);
}
@EventListener(ServiceInstancePreRegisteredEvent.class)
public void onServiceInstancePreRegistered(ServiceInstancePreRegisteredEvent event) {
registration = event.getSource();
}
} }
/** @Configuration
* Handle the pre-registered event of {@link ServiceInstance} for Consul @ConditionalOnBean(name = CONSUL_AUTO_CONFIGURATION_CLASS_NAME)
* @AutoConfigureOrder
* @return ApplicationListener<ServiceInstancePreRegisteredEvent> class ConsulConfiguration {
*/
@ConditionalOnClass(name = CONSUL_REGISTRATION_CLASS_NAME) /**
@Bean * Handle the pre-registered event of {@link ServiceInstance} for Consul
public ApplicationListener<ServiceInstancePreRegisteredEvent> onServiceInstancePreRegisteredInConsul() { *
return event -> { * @param event {@link ServiceInstancePreRegisteredEvent}
*/
@EventListener(ServiceInstancePreRegisteredEvent.class)
public void onServiceInstancePreRegistered(ServiceInstancePreRegisteredEvent event) {
Registration registration = event.getSource(); Registration registration = event.getSource();
String registrationClassName = registration.getClass().getName(); String registrationClassName = registration.getClass().getName();
if (CONSUL_REGISTRATION_CLASS_NAME.equalsIgnoreCase(registrationClassName)) { if (CONSUL_AUTO_REGISTRATION_CLASS_NAME.equalsIgnoreCase(registrationClassName)) {
NewService newService = ((ConsulRegistration) registration).getService(); NewService newService = ((ConsulRegistration) registration).getService();
String dubboURLsJson = getDubboURLsJSON(); String dubboURLsJson = getDubboURLsJSON();
if (StringUtils.hasText(dubboURLsJson)) { if (StringUtils.hasText(dubboURLsJson)) {
@ -133,7 +147,8 @@ public class DubboServiceRegistrationAutoConfiguration {
tags.add(DUBBO_URLS_METADATA_PROPERTY_NAME + "=" + dubboURLsJson); tags.add(DUBBO_URLS_METADATA_PROPERTY_NAME + "=" + dubboURLsJson);
} }
} }
}; }
} }
private void attachURLsIntoMetadata(Registration registration) { private void attachURLsIntoMetadata(Registration registration) {
@ -157,4 +172,6 @@ public class DubboServiceRegistrationAutoConfiguration {
} }
return jsonUtils.toJSON(urls.stream().map(URL::toFullString).collect(Collectors.toList())); return jsonUtils.toJSON(urls.stream().map(URL::toFullString).collect(Collectors.toList()));
} }
} }