Spring Boot series: Vue + Spring Boot + websocket to push the front and back messages
catalogue
1. Demand
2. Principle
2.1 handshake agreement:
2.2 advantages
3. Steps
3.1 backend springboot integration websocket
3.2 create a new configuration class and enable WebSocket support
3.3 create a new WebSocketServer server
3.4 front end
3.5 write the access interface to imitate the message push of the server
3.6 object data ...
Added by paulsiew2 on Tue, 08 Mar 2022 22:35:54 +0200
How efficient is the data flow of JDK 8 Stream?
Stream is a new key abstraction in Java SE 8 class library. It is defined in Java util. Stream (there are several stream types in this package: stream < T > represents object reference stream. In addition, there are a series of specialized streams, such as IntStream, LongStream, DoubleStream, etc.
The Stream introduced by Java 8 is mainl ...
Added by dwfait on Tue, 08 Mar 2022 22:28:26 +0200
Implement a simple login page
Implement a simple login page
Designed a login page, which feels pretty good
Realization effect
The design is still pretty good, isn't it
Analyze required functions
One login page one registration pageFlip effectThe regular judgment after input will prompt the user with informationFlip all the information of the page to be clea ...
Added by php_wiz_kid on Tue, 08 Mar 2022 22:11:45 +0200
1807 replace parentheses in string
Title Description: Give you a string s, which contains pairs of parentheses, each containing a non empty key. For example, in the string "(name) is (age) yearsolve", there are two pairs of parentheses, which contain the keys "name" and "age" respectively. You know the values corresponding to many keys. These relati ...
Added by jorgep on Tue, 08 Mar 2022 22:08:39 +0200
Day7: object oriented programming 1
Object oriented programming oop
For complex things, we need the idea of object-oriented, that is, constantly refine the classification, and then deal with it with the idea of process oriented at the last level
Call of supplementary method
Plus static is static method, and vice versa is non - static method
Cross package call: static methods ...
Added by jonker on Tue, 08 Mar 2022 21:58:29 +0200
python binocular vision calibration and 3D reconstruction
python double target localization and reconstruction
As mentioned above: a course assignment of machine vision is to collect a group of binocular images and complete the relevant processes of stereo vision: including camera calibration (internal and external parameters), distortion correction, basic matrix estimation, parallax map calculation ...
Added by josephferris on Tue, 08 Mar 2022 21:56:14 +0200
The path to becoming a God
Preparatory knowledge
What is java?
java is a high-level programming language launched by Sun company in 1995. It is a computer language. People can use the programming language to give instructions to the computer and let the computer complete the functions that people need.
What can java do?
java can write desktop applications, Web applic ...
Added by jej1216 on Tue, 08 Mar 2022 21:56:12 +0200
Hive explain implementation plan
Hive explain implementation plan
hive provides the EXPLAIN command to show the execution plan of a query. This execution plan is very helpful for us to understand the underlying principle, hive tuning, troubleshooting data skew, etc
The syntax used is as follows:
EXPLAIN [EXTENDED | DEPENDENCY | AUTHORIZATION | ANALYZE] query
explain can ...
Added by freeheader on Tue, 08 Mar 2022 21:55:19 +0200
Detailed explanation of python log logging module
Turn:
Detailed explanation of python log logging module
Article catalogue
1. Log related concepts
1.1 function of log
1.2 log level
1.3 there are two ways to use the logging module
2 use the module level functions provided by logging
2.1 ...
Added by jesse24 on Tue, 08 Mar 2022 21:52:52 +0200
python learning advanced part (part9) -- reference counting of objects
Study notes are for reference only. Mistakes must be corrected
python learning advanced
# Support multi line output
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = 'all' #The default is' last '
Special methods for class objects__ str__ ()
In the interactive interface of py ...
Added by devangel on Tue, 08 Mar 2022 21:43:47 +0200