Deployment and management of KVM virtualization platform

Deploying virtualization under Windows system can adopt Hyper-V and vSphere virtualization technology, so KVM is needed under Linux system. KVM relies on CPU virtualization instruction set to achieve high performance virtualization support. Because of its high integration with the Linux kernel, it has good performance in performance, security, ...

Posted by niranjnn01 on Thu, 22 Aug 2019 05:11:25 +0200

Implementation of OCR Recognition Interface for Calling Wechat Widget Program on Server

A Development Environment Back-end language javaTechnical Tool Framework springboot II. Achieving the Purpose This demo is suitable for the implementation of calling the OCR interface of the wechat widget program on the fast server, taking the driver's license interface as an example. Include Picture upload OCR Recognition by Calling Wechat Wi ...

Posted by jhl84 on Wed, 21 Aug 2019 05:29:14 +0200

Database middleware MyCat

What is MyCat? Look at the introduction on the official website. A Completely Open Source Large Database Cluster for Enterprise Application Development Enhanced database supporting transactions, ACID, and MySQL alternatives An enterprise-level database that can be considered a MySQL cluster to replace the expensive Oracle cluster ...

Posted by shelbytll on Tue, 20 Aug 2019 11:48:09 +0200

Four Ways of MyBatis_Generator (MBG) Reverse Engineering

mybatis is a popular persistence framework, and its reverse engineering greatly reduces our development time. Interested can see the document. Document address: http://www.mybatis.org/generator/index.html Not much nonsense. Let's summarize some of his configurations (for example, Eclipse):   1. Installation of Eclipse plug-ins Installation ...

Posted by hip_hop_x on Tue, 20 Aug 2019 09:06:08 +0200

From build to deploy, build a private blog quickly

Sometimes we want a controlled blog to record or share something. The subject matter of this blog is decided by you. It can be technology sharing (programming, Sinicized sharing, etc.) or life feeling. This article will introduce a controlled blog that can be quickly built and deployed. Before reading this article, I hope you have some knowledg ...

Posted by shab620 on Tue, 20 Aug 2019 07:06:24 +0200

Tomcat Source Analysis--- HTTP Request Processing

Finally, we're in the analysis phase of Connector, which is one of Tomcat's most complex features.Connector is named connector in Chinese. Since it is a connector, it will certainly connect something. What do you want to connect? Connectors are used to accept requests and encapsulate them as Request s and Response s, which are then handled ...

Posted by chrispos on Tue, 20 Aug 2019 04:51:42 +0200

Introduction to Dubbo

Are you like me, making progress every day and getting stronger introduce Dubbo is a high-performance open source framework for Java RPC. It was originally opened-source by Ali on GitHub and later hosted by Apache. Dubbo's development documentation is very detailed and user-friendly. Dubbo website , Core Diagram: RPC:Remote Procedure Call, rem ...

Posted by irkevin on Tue, 20 Aug 2019 04:23:23 +0200

Spring's IoC Source Analysis (Annotation-based)

I. IoC Theory IoC is called Inversion of Control, translated as "Control Inversion", and it also has a nickname DI (Dependency Injection), which is Dependency Injection. II. IoC Mode Spring provides two ways for IoC, one based on xml and the other based on annotations. The < bean > tag defines and manages beans. @ bean annotati ...

Posted by Devious Designs on Mon, 19 Aug 2019 05:52:14 +0200

[ASP.NET] Spring.Net Quick Start

Spring.NET-2.0.0-M2 and Chinese Documents Download: Links: https://pan.baidu.com/s/1TnMWP6wESllwlDE1Gdibqw  Extraction code: y0r5   Spring framework is an open source framework with many applications on Java platform. Although the language i ...

Posted by peterj on Sun, 18 Aug 2019 12:40:30 +0200

20 Enterprise Tuning 2-Table Optimization

1. Small and large tables join 1.Definition //Keys are relatively dispersed and tables with small amounts of data are placed on the left side of the join, which effectively reduces the chance of memory overflow errors. //Further, you can use map ...

Posted by BigMike on Sun, 18 Aug 2019 04:24:46 +0200