Java access Alipay payment tutorial

Java access Alipay payment tutorial 1, Create application 1. login Alipay open platform Alipay open platform web site: https://open.alipay.com/platform/developerIndex.htm 2. Create an application ? Figure 1 2, Set application key 1. download and install Alipay open platform assistant Software download address: https://gw.alipayobjec ...

Added by ScottCFR on Sat, 25 Dec 2021 11:22:02 +0200

Apache Dubbo basic usage

Distributed RPC framework Apache Dubbo Introduction to Dubbo Apache Dubbo is a high-performance Java RPC framework. Its predecessor is Alibaba's open source and lightweight open source Java RPC framework, which can be seamlessly integrated with the Spring framework. In 2018, Alibaba donated this framework to the apache foundation. What is RP ...

Added by serious1234 on Mon, 20 Dec 2021 17:52:14 +0200

Introduction to SpringBoot: asynchronous, mail tasks, scheduled tasks, distributed RPC overview, Dubbo and Zookeeper

Asynchronous task Asynchronous overview Asynchrony is to start the next request immediately after sending a request, regardless of whether the return value is received or not, or whether the return value is received after a long time. Compared with the system, it has great advantages because it makes great use of resources. It is opposite to ...

Added by tzicha on Mon, 20 Dec 2021 00:14:36 +0200

[SpringBoot] distributed (Dubbo + Zookpeer) - service registration and discovery

1, What is distributed Distributed computing is a new computing method proposed in recent years. The so-called distributed computing is that two or more software share information with each other. These software can run on the same computer or multiple computers connected through the network. In distributed system principles and mode ...

Added by GregArtemides on Sun, 19 Dec 2021 22:34:26 +0200

Dubbo Note Sorting

Dubbo 1. Overview of Apache Dubbo 1.1 Introduction Apache Dubbo is a high performance RPC framework, formerly Alibaba Open Source, a lightweight open source RPC framework that seamlessly integrates with the Spring framework, which Alibaba donated to the Apache Foundation in 2018 What is RPC? RPC is called remote procedure call, which i ...

Added by acallahan on Sat, 18 Dec 2021 07:10:12 +0200

How to change single-machine version of Eureka service to cluster version of Eureka service

Eureka Cluster Principle Fundamentals The above figure is an official architecture diagram from eureka, which is based on cluster configuration. Ereka at different nodes synchronizes data through ReplicateApplication Service as Service ProviderApplication Client for Service ConsumerMake Remote Call completes a service call After the servi ...

Added by kobmat on Tue, 14 Dec 2021 22:06:55 +0200

spring boot configuration dubbo(properties)

spring boot and dubbo configuration (properties) dubbo and zookeeper work together, but the configuration between them is not mentioned here. 1. There are two ways to configure spring boot and dubbo: 1) spring boot configures dubbo in its own profile application.properties. (This article focuses on this) 2) spring boot combines traditional ...

Added by CGameProgrammer on Wed, 24 Nov 2021 20:26:36 +0200

Implementing simple RPC framework 9 from scratch: heartbeat and reconnection mechanism of network communication

1, Heartbeat What is heartbeat In TPC, after the client and server establish a connection, they need to send data packets regularly to inform each other that they are still online to ensure the effectiveness of the TPC connection. If a connection has no heartbeat for a long time, it needs to be disconnected in time, otherwise the server will ...

Added by nobertos on Wed, 24 Nov 2021 11:32:12 +0200

Hand in hand to teach you to write an RPC framework

preface I've been reading the source code of dubbo recently, so I refer to this book as an aid (this Yiji always makes me see Jiyi, um, Jiyi crazy warrior): dubbo has 300000 lines of code in version 3.0. Just looking at the code of a core function is killing people. In order to strengthen understanding, I think it is a very good way to impl ...

Added by Elhcay on Wed, 24 Nov 2021 03:18:24 +0200

Nearly 20000 words of Dubbo principle analysis, thoroughly understand Dubbo

prefaceEarlier, we studied the principle of RPC. There are many frameworks based on RPC, such as Dubbo. Today, we will deeply analyze Dubbo from its SPI mechanism, service registration and discovery source code and network communication process.Dubbo architecturesummaryDubbo is a high-performance and excellent open source service framework of A ...

Added by greengo on Tue, 23 Nov 2021 21:47:21 +0200