13. Consumer Method Call Procedures for Service Introduction (Cluster Fault Tolerance and Load Balancing)

The previous section analyses the logic of provider directory refresh and connection between consumers and providers introduced by services, and analyses the following major packaging levels, which I divide into three layers MockClusterInvoker in ...

Posted by adambedford on Mon, 16 Sep 2019 01:25:18 -0700

12. Renewal of Registered Directory Introduced by Services and Connection of Services

The last section talks about the configuration and parameter subscription of service introduction. After parameter subscription, the consumer obtains the provider url, the configurer url, and the routing URL under the corresponding interface classifi ...

Posted by rtown on Mon, 16 Sep 2019 01:24:09 -0700

python multithreading to establish proxy ip pool

I've written about using single thread to build proxy ip pools before, but you will soon find that it's too slow to test proxy IPS one by one with single thread. It takes a long time to finish running once and it's totally unbearable. So this article is to use multithreading to build the ip pool, which is much faster than using single thread. T ...

Posted by Kyrst on Sun, 15 Sep 2019 01:56:21 -0700

Learn extjs5 with me (36 - Design of single module [4 building corresponding module according to menu])

Links to the original text: https://my.oschina.net/zipu888/blog/549788 Learn extjs5 with me (36 - Design of single module [4 building corresponding module according to menu]) ...

Posted by Fitzlegend on Fri, 13 Sep 2019 22:56:25 -0700

Design of Android Instance Interface

Links to the original text: https://my.oschina.net/u/860952/blog/549197 It hasn't been bubbling for a long time recently. Soon after learning Android, I started working on the interfac ...

Posted by maexus on Fri, 13 Sep 2019 03:31:04 -0700

Free boredom, a Wechat navigation bar animation bar bar bar bar bar bar bar!

/ Beginning/ Since the release of Wechat, the animation of the bottom navigation bar has always been enjoyed by developers, and with the update of the version, the animation of the bottom navigation bar has also been improving. Recently, in my spare time, I watched the bottom navigation bar animation of Wechat, and thought about the principle o ...

Posted by div on Thu, 12 Sep 2019 02:45:43 -0700

Detailed description of common logback.xml configuration files

Reasons for choosing logback A simple comparison between logback and log4j: 1. First, logback is faster to use for the same code path. 2.logback implements the api of log4j natively, and a transformation layer is needed in the middle of log4j. 3. R ...

Posted by shortj75 on Tue, 10 Sep 2019 05:20:06 -0700

Chapter 10, Integration of Spring and Spring MVC

Article directory 1. Integration of Spring and Spring MVC 2. Spring Integration Spring MVC - Solution Configuration Listener 3. The relationship between Spring IOC container and Spring MVC IOC container 4. Handwritten Spring listener 1. Integ ...

Posted by TweetyPie on Tue, 10 Sep 2019 04:52:42 -0700

jwt token uses autho 0-jwt framework

Links to the original text: http://www.leftso.com/blog/221.html  Reprint: http://www.leftso.com/blog/221.html Transfer to learning and sharing, and there are other good blog articles for learning. I. Preface To use jwt in Java programm ...

Posted by Froy on Mon, 09 Sep 2019 23:45:12 -0700

Spring IOC Process Source Parsing

Say nothing more, let's start with a dumb version of IOC demo Custom Bean Definition class MyBeanDefinition{ public String id; public String className; public String value; public MyBeanDefinition(String id, String className, String value) { this.id = id; this.className = className; this.value = value; ...

Posted by Rob2005 on Mon, 09 Sep 2019 19:15:10 -0700