Talk about Federation manager of artemis

order This paper focuses on the Federation manager of artemis FederationManager activemq-artemis-2.11.0/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/federation/FederationManager.java public class FederationManager implements ActiveMQComponent { private final ActiveMQServer server; private Map<String, Federatio ...

Added by Dm7 on Thu, 13 Feb 2020 17:15:05 +0200

Analysis of the principle of Jsp in Spring Boot

The essence of jsp The essence of jsp is servlet. You have deployed Java Web project with tomcat, and you know how to generate the corresponding servlet of jsp page in the work directory. The essence of servlet is to encapsulate socket jsp page <%-- Created by IntelliJ IDEA. User: wy Date: ...

Added by bastien on Tue, 11 Feb 2020 18:28:24 +0200

Quick packaging and deployment of springboot

Key knowledge points: Maven's assembly plug-in implements custom packaging deployment (including dependent jar packages) At present, there are several common deployment methods of spring boot project. 1. Use the docker container to deploy, build the application of springboot into a docker image, and then start the image through the containe ...

Added by ozestretch on Tue, 11 Feb 2020 15:15:00 +0200

Dubbo: in depth understanding how Dubbo source code publishes services to the registry

I. Preface As mentioned earlier, Dubbo's service discovery mechanism, that is, SPI. Now that Dubbo has implemented a more powerful service discovery mechanism, let's take a look at what Dubbo needs to do to register services in the registry after discovering services. 2, Introduction to Dubbo service registration The first thing to understand i ...

Added by forsooth on Tue, 11 Feb 2020 14:54:46 +0200

3. SpringBoot+MybatisPlus integration code generator

1 <dependency> 2 <groupId>org.projectlombok</groupId> 3 <artifactId>lombok</artifactId> 4 <version>1.18.0</version> 5 <scope>provided</scope> 6 </dependency> 7 <!-- Add code generator dependencies --> 8 <dependency> 9 <groupId>org. ...

Added by vboyz on Sun, 09 Feb 2020 17:24:27 +0200

Flink notes: Flink integrates Kafka

1. Preparation 1.ZooKeeper cluster installation: if you do not know about ZooKeeper installation, please click the link to learn: Installation of ZooKeeper cluster 2.Kafka cluster installation: if you do not know the installation of ZooKeeper, please click the link to learn: Installation of Kafka clus ...

Added by airric on Fri, 07 Feb 2020 10:52:02 +0200

Rest microservice building case engineering module

General introduction 1. Next, our spring MVC + mybatis + MySQL elementary and advanced course takes the Dept Department module as a general case of microservice Consumer consumer consumer (Client) calls the service provided by Provider provider (Server) through REST 2. Review of Maven's subcontract mo ...

Added by bsteimel on Thu, 06 Feb 2020 15:53:27 +0200

Several methods of sharing global information in Hadoop

I can't understand a pure technical article so long ago. I suddenly said that it contains sensitive words. I got off the shelf and asked me to resend it... ------   In the process of writing Hadoop MapReduce program, sometimes we need to use some shared global data in mappers or reducers. For exam ...

Added by llimllib on Thu, 06 Feb 2020 06:18:43 +0200

Build the basic https and wss environment of wechat applet

https://blog.csdn.net/w2456/article/details/53943080/ 1. Preparations Domain name one Free certificate (recommended: Tencent cloud, Alibaba cloud and cheap ssl are free configurations, and then download the certificate first) One Centos server nginx 1.10.2 1 2 3 4 5 2. Install nginx Installation tutorial ht ...

Added by jofield on Fri, 31 Jan 2020 14:45:08 +0200

mapreduce implementation of big data learning find common friends JobControl implementation of directed acyclic graph

Note: Please note that this is just a MR training project. In practical application, do not use MR calculation friend recommendation and calculation program of directed acyclic graph logic. Because MR will need to write intermediate results to disk, disk IO greatly reduces efficiency. Hadoop is a bit b ...

Added by Artiom on Mon, 27 Jan 2020 12:45:06 +0200