spring boot integrated dubbo enterprise full

1, What is Spring Boot? Spring Boot at this stage is too hot. Why? Because it is easy to use, simple to configure and fast to start, what is it? From the official website, we can see that it is a subproject of spring open source organization, which mainly simplifies the heavy configuration of spring, and Spring Boot embeds various Servlet conta ...

Added by darknuke on Wed, 15 Jan 2020 13:49:27 +0200

Dubbo Getting Started to Actual Warfare

Frontier: Dubbo is a very popular technology in today's popular distributed architecture, allowing days of free time to learn and work on later projects to pave the way for later distributed projects. Introduction to Dubbox Dubbox is a distributed service framework, its predecessor is the Alibaba open source project Dubbo, which is used by dom ...

Added by mepaco on Tue, 14 Jan 2020 19:30:16 +0200

Spring JdbcTemplate

I wrote an article yesterday Why don't many people want to use hibernate? Blog, with the majority of ape friends to discuss the advantages and disadvantages of hibernate and the way to connect to the database, go home to study, found that Spring JdbcTemplate is very useful, made a summary, share to you. Disclaimer: This article is just a littl ...

Added by tooNight on Tue, 14 Jan 2020 11:05:31 +0200

Details of event driven process of nginx based on epoll model

Epoll is an event driven model, which is one of the important reasons why nginx can efficiently handle client requests. From the flow point of view, the use of epoll model is mainly divided into three steps: the creation of epoll handle, listening to the addition of file descriptors and the triggering of waiting events. This paper will introduc ...

Added by gotissues68 on Tue, 14 Jan 2020 08:22:48 +0200

How many bytes does the boolean type take up in Java

See a friend in the group ask, think of before also met this problem, also do not have a clear answer, so he went online to find the following answer. The conclusion is as follows: boolean type is compiled into int type for use, accounting for 4 byte s. The boolean array is compiled into byte array ...

Added by aarbrouk on Tue, 14 Jan 2020 07:14:14 +0200

Spring learning notes - Introduction

What is Spring First, Spring is a lightweight inversion of control (IoC) and aspect oriented (AOP) container framework The spring framework is created because of the complexity of software development. Spring uses basic JavaBean s to do things that were previously only possible with EJB s. However, sp ...

Added by Dave2222 on Tue, 14 Jan 2020 06:04:17 +0200

ES6--13 object's Proxy interception -- Proxy constructor

Contents of this section Two parameters of the Proxy constructor Method of Proxy instance Property read block -- get() Property assignment interception -- set() Function call interception -- apply() Function query interception -- has() Constructor block -- construct() Property delete block -- delete ...

Added by eruiz1973 on Mon, 13 Jan 2020 13:41:31 +0200

ES6 class class and inheritance

class 1 -------- the following code defines a "class". You can see that there is a constructor method in it, which is the construction method class Box{ constructor(a,b){ console.log(a+b);//8 } play(){ } } let b=new Box(5,3) //Instantiation, wh ...

Added by Eric! on Sat, 11 Jan 2020 18:04:29 +0200

[Springboot] annotation @ ConfigurationProperties makes configuration neat and simple

1 Introduction Let's use an article earlier< [Spring] just want to record the use of @ Value in one article, and don't want to find any more (with mind map attached)> It explains in detail how to use @ Value in Spring to meet our configuration requirements. It is powerful and easy to use. But it also has its limitations. For example, for ...

Added by eashton123 on Sat, 11 Jan 2020 14:37:49 +0200

Active MQ learning Broker

I. concept Equivalent to an ActiveMQ service instance Broker actually starts ActiveMQ in the form of code, embeds MQ into java code, so that it can be started at any time. When it is used, it can save resources and ensure reliability. 2, Start ActiveMQ according to different configuration files 1. First copy and rename activemq.xml in the ...

Added by rami103 on Fri, 10 Jan 2020 21:00:53 +0200