Spring-Cloud-Gateway Source Parsing - NettyRoutingFilter for Filter (4.7)
1. Overview
This article mainly shares the code implementation of NettyRoutingFilter.
NettyRoutingFilter, Netty Routing Gateway Filter.It uses a Netty-based HttpClient to request back-end Http services based on http:// or https:// Prefix (Scheme) filtering.
NettyWriteResponseFilter, a gateway filt ...
Posted by keveen on Tue, 23 Jun 2020 18:34:50 +0200
[LeetCode] 297. Serialization and deserialization of binary tree
subject
Link:https://leetcode-cn.com/problems/serialize-and-deserialize-binary-tree/
Problem Description:
analysis
Method 1: DFS (recursive)
Recursion can be understood as: transferring responsibility
Recurse a tree and only focus on the current single node
Leave the rest to recursion
"Se ...
Posted by spudly on Sat, 20 Jun 2020 09:23:08 +0200
GStreamer official introductory course 5: integrating GStreamer with your graphical interface
This tutorial demonstrates how to integrate GStreamer into a graphical user interface (GUI) toolkit like GTK +. Basically, GStreamer is responsible for media playback, while the GUI toolkit handles user interaction. The most interesting part is that the two libraries must interact: instruct GStreamer to ...
Posted by kishore_marti on Fri, 12 Jun 2020 10:19:34 +0200
Symmetric encryption algorithm
concept
In the symmetric encryption algorithm, the data sender processes the plaintext (original data) and the encryption key together through a special encryption algorithm, which makes it become a complex encrypted text to be sent out. After receiving the ciphertext, if the receiver wants to interpr ...
Posted by vaibhavs on Fri, 05 Jun 2020 09:50:25 +0200
LeetCode 297. Serialization and deserialization of binary tree
My LeetCode: https://leetcode-cn.com/u/ituring/
My LeetCode source code [GitHub]: https://github.com/izhoujie/Algorithmcii
LeetCode 297. Serialization and deserialization of binary tree
subject
Serialization is the operation of converting a data structure or object into continuous bits, and then the transformed data can be stored in a file or ...
Posted by baccarak on Fri, 08 May 2020 14:56:28 +0200
Basic part of flash in python framework (3) ------ operation of template
1.flask specific variables and functions:
Variables: g, session, request, config
Functions: URL for(), get flashed messages(), please pay attention to this function. Remember that it is a function. Don't forget to write brackets!!!!!!!!!
I don't need to talk much nonsense. I'll go straight to the code to experience it:
First, explain a bug. Whe ...
Posted by keith73 on Fri, 01 May 2020 11:01:27 +0200
JMeter Parameter Signature - Groovy Tool Class Form
How do I sign parameters in JMeter?
Last Period JMeter Parameter Signature - Groovy Script Form Using Groovy scripting, this issue continues Groovy's use of parameter signatures in JMeter -- parameter signatures are done using Groovy tool classes.
This is a common situation in interface testing where one parameter of the interface is determined ...
Posted by miasma on Fri, 24 Apr 2020 04:30:03 +0200
ALSA driver configuration external HP MIC SPK
Overall program structure
Take sound/soc/pxa/corgi.c as an example
To describe the sound card, define the snd SOC card instance and fill in the Dai link member.
In order to control the opening and closing of SPK, HP and MIC in the upper layer of ALSA, kcontrol instances are defined.
To enable ALSA to automatically cont ...
Posted by goldberg on Mon, 06 Apr 2020 08:38:43 +0200
python advanced (4) - text and byte sequence (coding problem)
Main content of this paper
character
byte
Structure and memory view
Conversion between characters and bytes -- codec
BOM ghost character
Continue tomorrow...
python advanced - Directory
The code in this article is placed on github: https://github.com/ampeeg/cnblogs/tree/master/python advanced
character
'''
Character encoding is a pro ...
Posted by misslilbit02 on Mon, 06 Apr 2020 05:04:58 +0200
GStreamer basic tutorial 10: GStreamer tools
target
GStreamer provides a series of convenient tools. There is no code involved in this tutorial, but there are still some useful things to talk about:
How to build a pipeline on the command line -- without using C at all
How to find out the Capabilities of an element
How to find the internal ...
Posted by DrAxeman on Thu, 12 Mar 2020 07:37:33 +0100