Vue.js Learning Notes-Directory Structure

Articles Catalogue 1. Overview 2. *.vue file 3. 1. Overview ├── README.md // Project Description Document ├── index.html // Page entry ├── package.json // Project Dependency Profile ├── build // Compi ...

Posted by clintonium on Tue, 08 Oct 2019 08:52:46 -0700

Calling Express Bird Single Number Query Interface Api to Check Express

The main functions are as follows: According to the order number entered by the user, the express bird can be automatically identified according to the API interface of the express bird query, so as to realize the function of automatic query. Docking process 1. Apply for an express bird account to obtain authorization http://www.kdniao.com/reg ...

Posted by SoccerGloves on Tue, 08 Oct 2019 06:09:43 -0700

Single Sign-on Performance Test Scheme

Project login system upgrade to single sign on: English full name Single Sign On. SSO is a multi-application system. Users can access all trusted applications with only one login. Previous unified login methods have been abandoned, because the single sign-on system is much more complex than the previous login system. The previous scheme request ...

Posted by eastcoastdubs on Tue, 08 Oct 2019 03:25:00 -0700

JS-Native Animation Packaging

JS-Native Animation Packaging Realization effect Code Realization effect In offset section, uniform animation and slow animation are realized, but only one attribute can be set at a time, and the animation can not be executed sequentially, so we need to solve the problem: Pass an array of styl ...

Posted by peaforabrain on Tue, 08 Oct 2019 00:29:16 -0700

How java formats json data and outputs it to the console

In the process of interface testing, most data interaction uses json format, but the effect of json output from console is far less beautiful than that of browser plug-in. After searching for some information, I decided to write a formatting method to output json information to the console. After some attempts, it has been completed. Share as f ...

Posted by parms on Tue, 08 Oct 2019 00:23:00 -0700

Talk about NacosNamingService's registerInstance

order This paper mainly studies the registerInstance of Nacos Naming Service. NacosNamingService nacos-1.1.3/client/src/main/java/com/alibaba/nacos/client/naming/NacosNamingService.java public class NacosNamingService implements NamingService { private static final String DEFAULT_PORT = "8080"; private static final long DEFAULT_HEART_BE ...

Posted by dakkonz on Mon, 07 Oct 2019 22:44:16 -0700

Elastic Search Java REST Advanced Client Query Template

Elastic Search Java REST Advanced Client Inline Template ElasticSearch 7.2.0 1. Inline template 2. Create registration template 3. Execute registration template 4. Create Client 5.maven configuration - pom file   1. Inline template /** * Inline template */ public static void inlineTempl ...

Posted by mizz key_me on Mon, 07 Oct 2019 21:05:55 -0700

Using Noejs Websocket to Establish one to one Instant Messaging Service

Requirement: One-to-one instant messaging service using nodejs-websocket Environment: nodejs Design idea: Save message channel and return message through message channel. Data Storage: Redis, MongoDB, Show Code without Example First, I want to know what websocket is. WebSocket is based on TCP pr ...

Posted by robwilson on Mon, 07 Oct 2019 20:56:47 -0700

Source code analysis Elastic Job fragmentation mechanism (flow chart with fragmentation mechanism)

This paper will focus on the analysis of Elastic Job's fragmentation mechanism: Elastic Job fragmentation mechanism: When Elastic Job starts, it first starts the listener that needs to be re-fragmented.See the code: ListenerManager startAllListeners {...; shardingListenerManager. start ();...}. Before the task is executed, fragmentation inform ...

Posted by ethan.whitt on Mon, 07 Oct 2019 18:40:08 -0700

Implementation of Simple RPC Framework Based on Netty

Preface Now there are many examples of using Netty to build RPC framework on the Internet. Why do I write an article here to discuss it? I know very well that I may not have written them so well. There are two reasons why we should write about it: First, because after learning Netty, we need to practice constantly to better grasp the use of Ne ...

Posted by pup200 on Mon, 07 Oct 2019 17:30:38 -0700