GatewayFilter and GlobalFilter in Spring Cloud Gateway|
Abstract: This paper mainly introduces what is GatewayFilter and GlobalFilter, as well as the differences and connections. Then it introduces how to customize the use of GatewayFilter and GlobalFilter in Spring Cloud Gateway.
1. Filter of spring cloud gateway
The Filter in Spring Cloud gateway can be divided into two types in terms of interfa ...
Added by tridean34 on Sun, 06 Feb 2022 19:55:05 +0200
Read the element UI source code and how to find the style and component entry file
How to read?
First, find the entry fileFind style and component filesAre there any reusable small components, and what are the large components composed of these small components
Entry file
Project startup document:
"scripts": {
"bootstrap": "yarn || npm i",
"build:file": "node build/bin/iconInit.js & node build/bin/build-entr ...
Added by Megahertza on Thu, 20 Jan 2022 17:32:05 +0200
Java -- Interpretation of HashMap source code (Java jdk1.7)
Core parameters
/**
* The table, resized as necessary. Length MUST Always be a power of two.
*/
transient Entry<K,V>[] table = (Entry<K,V>[]) EMPTY_TABLE;
/**
* The number of key-value mappings contained in this map.
*/
transient int size;
/**
* The next size value at which to resize ...
Added by jackthebookie on Wed, 19 Jan 2022 16:24:08 +0200
[JavaScript] setlntval function and built-in class
catalogue
Remove the front and back blank trim
Select all and deselect all check boxes
Get the current system time
Get milliseconds
Periodic function setInterval
Built in support class Array
join method link
Invert array: reverse()
BOM programming
open and close methods in window
Message box pop-up (alert, confirm)
history and locat ...
Added by Dargrotek on Tue, 18 Jan 2022 18:34:32 +0200
05 - preliminary routing test
Source address: GitHub / Code cloud
Preliminary routing test
🎯 target
Nested routes are implemented. When the route jumps, only the view pointed to by the sub route is re rendered.The implementation access / (root path) displays / home (background home page).
😴 lessons
The application interface in real life is usually compos ...
Added by bschmitt78 on Mon, 03 Jan 2022 11:44:16 +0200
Vue e e-commerce project exercise-3 home page design
Realization effect
Design ideas
It is mainly divided into three parts
Head areaSidebar areaRight body area
Use the Container layout Container to build the basic structure of the page container
<el-container>: Outer container. When a child element contains <el-header> or <el-footer>When, all child elements will b ...
Added by Stickdragon on Mon, 03 Jan 2022 07:10:04 +0200
Is VUE hungry? Add, delete and modify functions for tree controls
The general effect is shown in the figure:
1. Provincial and municipal API
The list of provinces and cities is copied on the Internet, and two properties are added
isEdit: controls editing statusmaxexpandId: the maximum current id
export default{
maxexpandId: 95,
treelist: [{
id: 1,
name: "Beijing",
Pr ...
Added by notaloser on Mon, 03 Jan 2022 04:41:51 +0200
Front and back end separation learning notes -- [route nesting, query form display]
You can refer to the API of learning ElementUI framework - > API for ElementUI framework
1. Route nesting
Study of the last note Administrator login permission assignment Click the operation menu on the left to generate a specific management form;
You can imagine that the basic layout of the open is like this
Here, several d ...
Added by forzatio on Mon, 03 Jan 2022 03:33:48 +0200
Big data table stuck processing problem UMI UI
Big data table stuck processing problem UMI UI
When developing large-scale projects or projects with too much data, we will cause the problem of form jamming and its thorny problems because of the large amount of data. Here I recommend that you can try using the UMI UI component library. Tens of thousands of data are much more convenient witho ...
Added by kreoton on Sat, 25 Dec 2021 13:56:26 +0200
computed learning notes
In the official documents, the two most important differences between calculated and method are emphasized
computed is a property call and methods is a function callcomputed has a caching function, but methods is not
Calculated properties are cached based on their dependencies and will be re evaluated only when their related dependencies chang ...
Added by sansoo on Wed, 22 Dec 2021 15:45:10 +0200