docs:update developer

pull/2/head
SkyeBeFreeman 3 years ago
parent eb7cdf56b2
commit 11108962c1

@ -48,6 +48,18 @@
<organization>Tencent</organization>
<url>https://github.com/SkyeBeFreeman/</url>
</developer>
<developer>
<name>Andrew Shan</name>
<email>samshan08@126.com</email>
<organization>Tencent</organization>
</developer>
<developer>
<id>xiaoyao1999hn</id>
<name>Jie Cheng</name>
<email>348893717@qq.com</email>
<organization>Tencent</organization>
<url>https://github.com/xiaoyao1999hn/</url>
</developer>
</developers>
<properties>
@ -58,7 +70,7 @@
<spring.cloud.version>Hoxton.SR9</spring.cloud.version>
<!-- Polaris -->
<polaris.cient.version>0.8.0-SNAPSHOT</polaris.cient.version>
<polaris.cient.version>1.0.0-SNAPSHOT</polaris.cient.version>
<!-- Maven Plugin Versions -->
<jacoco.version>0.8.3</jacoco.version>

@ -19,7 +19,7 @@
<properties>
<revision>1.0.0.Hoxton.SR9</revision>
<polaris.version>0.8.0-SNAPSHOT</polaris.version>
<polaris.version>1.0.0-SNAPSHOT</polaris.version>
<tomcat.version>10.0.0-M6</tomcat.version>
<powermock.version>2.0.0</powermock.version>

@ -27,7 +27,7 @@ import org.springframework.core.env.Environment;
/**
* Properties for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@ConfigurationProperties("spring.cloud.polaris.discovery")
public class PolarisProperties {

@ -27,7 +27,7 @@ import java.lang.annotation.Target;
/**
* Annotation for Polaris Client for service configuration.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)

@ -25,7 +25,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.cloud.client.ConditionalOnDiscoveryEnabled;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})

@ -32,7 +32,7 @@ import org.springframework.context.annotation.Import;
/**
* Discovery Auto Configuration for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnPolarisDiscoveryEnabled

@ -26,7 +26,7 @@ import org.springframework.cloud.client.discovery.DiscoveryClient;
/**
* Discovery Client for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisDiscoveryClient implements DiscoveryClient {

@ -29,7 +29,7 @@ import org.springframework.context.annotation.Configuration;
/**
* Discovery Client Configuration for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnBlockingDiscoveryEnabled

@ -34,7 +34,7 @@ import org.springframework.stereotype.Component;
/**
* Discovery Handler for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Component
public class PolarisDiscoveryHandler {

@ -29,7 +29,7 @@ import java.util.List;
import org.springframework.cloud.client.ServiceInstance;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisServiceDiscovery {

@ -32,7 +32,7 @@ import reactor.core.scheduler.Schedulers;
/**
* Reactive Discovery Client for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisReactiveDiscoveryClient implements ReactiveDiscoveryClient {

@ -31,7 +31,7 @@ import org.springframework.context.annotation.Configuration;
/**
* Reactive Discovery Client Configuration for Polaris.
*
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnReactiveDiscoveryEnabled

@ -26,7 +26,7 @@ import org.springframework.cloud.client.serviceregistry.ServiceRegistry;
import org.springframework.util.StringUtils;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisAutoServiceRegistration extends AbstractAutoServiceRegistration<Registration> {

@ -28,7 +28,7 @@ import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.serviceregistry.Registration;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisRegistration implements Registration, ServiceInstance {

@ -41,7 +41,7 @@ import org.springframework.cloud.client.serviceregistry.ServiceRegistry;
import org.springframework.util.StringUtils;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisServiceRegistry implements ServiceRegistry<Registration> {

@ -34,7 +34,7 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties

@ -25,7 +25,7 @@ import org.springframework.cloud.netflix.ribbon.RibbonClients;
import org.springframework.context.annotation.Configuration;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties

@ -26,7 +26,7 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
@Configuration
public class PolarisRibbonServerListConfiguration {

@ -30,7 +30,7 @@ import java.util.ArrayList;
import java.util.List;
/**
* @author Haotian Zhang
* @author Haotian Zhang, Andrew Shan, Jie Cheng
*/
public class PolarisServerList extends AbstractServerList<Server> {

Loading…
Cancel
Save