SpringBoot 2.0 + Apache Dubbo 2.7.3 Latest Version Integration Scheme

Preface On February 16, 2018, Apache Dubbo joined the Apache Foundation incubator. On May 16, 2019, the board of directors of the Apache Software Foundation approved the graduation application of Apache Dubbo, which means that Apache Dubbo has officially become Apache's top project. To configure When Dubbo donates sperm to Apache, it means tha ...

Posted by Diceman on Sun, 15 Sep 2019 22:43:18 -0700

JSP Learning Notes - Custom MVC Framework

Implement a lightweight MVC framework based on Spring MVC. Knowledge involves reflection mechanism, use of annotations, and use of some third-party toolkits. thinking The main overall process is shown in the figure below. As before, we defined a Dispatch Servlet to intercept requests (url requests at the end of. do are generally intercepted he ...

Posted by Sakesaru on Sun, 15 Sep 2019 02:57:11 -0700

tomcat optimized reality

Original Link: https://my.oschina.net/u/1590001/blog/268213 Memory is not as good as bad pen. Here's tomcat brain-free optimization 1. Memory settings (VM parameter tuning)(1). In Win ...

Posted by metrathon on Sat, 14 Sep 2019 20:06:00 -0700

Recommendation of Several Common Pressure Measuring Tools

ab ab is a pressure testing tool provided by apache, which is very convenient to use. install If Apache is installed, then ab is installed. If you don't want to install apache, you can install ab in the following way # ubuntu sudo apt-get install apache2-utils # centos yum -y install httpd-tools Pressure measurement Before press ...

Posted by tiggy on Thu, 12 Sep 2019 02:27:12 -0700

Spring Cloud Learning Notes: Using Feign to Implement Declarative Service Calls

brief introduction Feign is a declarative Web Service client, which simplifies the writing of Web Service clients. Compared with Ribbon+RestTemplate, developers only need to call HTTP API through simple interfaces and annotations. It supports Spring MVC annotations and JAX-RS annotations, as well as pluggable encoders and decoders. Integrating ...

Posted by scotmcc on Thu, 12 Sep 2019 02:20:08 -0700

Big Data Series: Spark's Initial Knowledge of Learning Notes

1. Introduction to Spark In 2009, Spark was born at AMPLab Laboratory at the University of Berkeley. Spark is an experimental project with very little code and is a lightweight framework. In 2010, the University of Berkeley officially opened up th ...

Posted by Pozor on Wed, 11 Sep 2019 19:29:10 -0700

Apache Flink Zero Foundation Initial Flink Data Stream Programming

Data sources can be created by Stream Execution Environment. addSource (sourceFunction). Flink also provides some built-in data sources for easy use, such as readTextFile(path) readFile(), and of course, it can also write a custom data source (by implementing the SourceFunction method, but can not be implemented in parallel). That's ok. Or impl ...

Posted by McInfo on Tue, 10 Sep 2019 02:57:29 -0700

SpringBoot integrates ActiveMQ, just read this article.

ActiveMQ is an open source messaging system provided by Apache, which is implemented entirely in Java, so it can support JMS (Java Message Service, or Java Message Service) specification very well. This article will introduce in detail the installation of ActiveMq, the integration with SpringBook to send queue messages, and the process of s ...

Posted by porto88 on Mon, 09 Sep 2019 20:58:08 -0700

Construction of Go 1.13 Private Agent Service

Original address: Construction of Go 1.13 Private Agent Service. Setting GOPROXY can only specify one proxy service address prior to the release of Go version 1.13.After entering Go 1.13, GOPROXY supports multi-proxy settings, which can be separated.The following: export GOPROXY=https://proxy.golang.org,direct According to the official document ...

Posted by webpoet on Mon, 09 Sep 2019 18:23:23 -0700

[Spring Cloud] Spring Cloud Config Implements Distributed Configuration Center

Spring Cloud Config Implements Distributed Configuration Center 1. Distributed Configuration Center In distributed systems, there are a large number of service applications, and each application needs a corresponding configuration file to help complete the initialization and operation of the service environment.As a result, a large number of se ...

Posted by POGRAN on Sun, 08 Sep 2019 19:44:13 -0700