Spring Cloud Tencent? The wheel continues to build


Reference address:

Spring Cloud Tencent Github
Polaris 官网:https://polarismesh.cn/
Polaris Github:https://github.com/polarismesh/polaris

[Note] Come out as you please, I will continue to masturbate Istio! ! !

introduce

Spring Cloud Tencent is Tencent's open source one-stop microservice solution.

Spring Cloud Tencent implements the Spring Cloud standard microservice SPI, and developers can quickly develop Spring Cloud cloud-native distributed applications based on Spring Cloud Tencent.

The core of Spring Cloud Tencent relies on Polaris, Tencent 's open source one-stop service discovery and governance platform , to realize various distributed microservice scenarios.

The capabilities provided by Spring Cloud Tencent include but are not limited to:

  • Service Registration and Discovery
  • Dynamic configuration management
  • Service Governance
    • Service throttling
    • Service circuit breaker
    • service routing
  • Tag transparent transmission

Experience the environment

  • Console address: http://14.116.241.63:8080/
    • Account: polaris
    • Password: polaris
  • Control plane address:grpc://183.47.111.80:8091
  • spring-cloud-tencent-exampleThe following example addresses point to the experience service address ( grpc://183.47.111.80:8091) by default. If you just experience Spring Cloud Tencent, you can run any example directly with one click.

Console

insert image description here

user's guidance

All components of Spring Cloud Tencent have been uploaded to the Maven central warehouse, and only need to introduce dependencies.

For example:

<!-- add spring-cloud-tencent bom  -->
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.tencent.cloud</groupId>
            <artifactId>spring-cloud-tencent-dependencies</artifactId>
            <!--version number-->
            <version>${version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>    
                 
<!-- add spring-cloud-starter-tencent-polaris-discovery dependency  -->
<dependencies>
    <dependency>
        <groupId>com.tencent.cloud</groupId>
        <artifactId>spring-cloud-starter-tencent-polaris-discovery</artifactId>
    </dependency>
</dependencies>

Guess you like

Origin blog.csdn.net/peng2hui1314/article/details/125576299