Publish the project through Android Studio to the Jcenter repository

What is a Jcenter warehouse? Personally, I think Jcenter is similar to git/svn, and it is a project management tool. We can use it to store some common components, class libraries, plug-ins, etc. to realize the sharing function. At the same time, ...

Added by jamesdk on Sat, 14 Sep 2019 08:56:35 +0300

Spring Cloud Learning Notes: Using Ribbon Load Balancing

brief introduction Spring Cloud Ribbon is a client load balancing tool based on Netflix Ribbon. After registering the Ribbon client in the registry, Ribbon can automatically help service consumers call interfaces based on some load balancing algorithm, such as polling (default), random, weighted polling, weighted random, etc. Project introducti ...

Added by kkurkowski on Wed, 11 Sep 2019 13:39:54 +0300

Spring Boot Custom Start Component Development

The core of Start component development is the annotation order of automatic annotation classes, that is, annotation according to conditions. First, let's understand the @Configuration, @Value, @Bean annotations Take the DataSourceAutoConfiguration c ...

Added by BLINDGUY on Wed, 11 Sep 2019 06:57:36 +0300

SpringBoot and Data Access

Data access, startup principle analysis, custom starter 1. SpringBoot and Data Access 1,JDBC <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dep ...

Added by duklaprague on Wed, 11 Sep 2019 06:07:21 +0300

Chapter 1: Building multi-module Maven project + creating registry Eureka sub-module

Links to the original text: https://cloud.tencent.com/developer/article/1406881 In this article: Preface Starter Spring Cloud Practical Series Actual version ------ The text begins---------------------------------------------------------- ...

Added by biffjo on Mon, 09 Sep 2019 13:12:16 +0300

CI/CD:Jenkins Pipeline Practice

Catalog 1 Jenkins2.X Pipeline 1.0 CI/CD 1.1 pipeline Brief Introduction 1.2 Jenkinsfile 1.3 Pipeline Grammar 1.3.1 scripted pipeline 1.3.2 Declarative Pipeline 1.4 Blue Ocean Advantages of 1.5 Pipeline 2 Multi-branch Pipeline Practice 2.1 Con ...

Added by DanArosa on Sun, 08 Sep 2019 13:52:14 +0300

Service discovery and polling for spring-cloud-kubernetes (with fuses)

This is the fourth article in the series of spring-cloud-kubernetes. The main content is to deploy two applications on kubernetes: Web-Service and Acount-Service. Web-Service calls the http service provided by Account-Service through the registration discovery capabilities provided by spring-cloud-kubernetes. List of Series Articles Official d ...

Added by conquest on Wed, 04 Sep 2019 04:45:51 +0300

[spring-boot source parsing] spring-boot dependency management

Keywords: spring-boot dependency management, spring-boot-dependencies, spring-boot-parent problem maven project, dependency management is a very basic and very important function. Now the project is more and more large, more and more dependencies, there are too many two-party packages and three-party packages. Dependency conflict handling is re ...

Added by jstarkey on Mon, 02 Sep 2019 04:48:58 +0300

Service Registration Discovery, Configuration Center Set Integrated Spring Cloud Consul

Earlier we talked about Eureka and Spring Cloud Config, and today we introduced an all-round player, Consul.It is a tool introduced by HashiCorp to provide service discovery and service configuration.It is developed in go language and has good portability.Included by Spring Cloud, Eureka stopped the development of new versions and wanted devel ...

Added by Grunt on Wed, 28 Aug 2019 04:41:51 +0300

Distributed RPC Framework

Distributed RPC Framework Apache Dubbo Learning objectives Understanding the evolution of software architecture Grasp the architecture of Dubbo framework Ability to start and stop Zookeeper with commands Mastering Dubbo Service Providers ...

Added by bob_dole on Tue, 27 Aug 2019 08:56:01 +0300