Flink_ 08_ SQL (personal summary)
Statement: 1 *** 2. Because it is a personal summary, write the article with the most concise words 3. If there is any mistake or improper place, please point out
FlinkSQL &am ...
Added by adrianl on Sat, 05 Mar 2022 04:36:46 +0200
mysql command contact
mysql command exercise
Task: Table name: worker -- all fields in the table are in Chinese, such as department number, salary, employee number, work participation, etc CREATE TABLE worker ( Department number int(11) NOT NULL, Employee id int(11) NOT NULL, Working time date NOT NULL, Salary float(8,2) NOT NULL, Political outlook varchar(10) NOT ...
Added by bossman on Sat, 05 Mar 2022 04:32:27 +0200
webpack 5 module Federation
Solving the difficult problems of implementing micro front end with webpack 5 module Federation
explain
webpack 5 adds the function of Module Federation, which can help to form multiple independent builds into an application, and different builds can be developed and deployed independently.
With the help of module Federation, we can ...
Added by phprocker on Sat, 05 Mar 2022 04:30:53 +0200
In depth Java microservice gateway series 3: detailed explanation of spring cloudalibaba gateway (the most complete in History)
9, Service gateway: Gateway9.1 introduction to gatewayAs we all know, in the microservice architecture, a system will be divided into many microservices. So how can a client call so many microservices? If there is no gateway, we can only record the address of each microservice on the client and call it separately.Such an architecture will have ...
Added by deeem on Sat, 05 Mar 2022 04:28:51 +0200
LinkedHashMap for JDK source code analysis
1, Introduction
LinkedHashMap inherits from HashMap. In addition to the features of HashMap, LinkedHashMap also provides the function of keeping the same traversal order and insertion order.
LinkedHashMap maintains a two-way linked list to ensure the consistency of traversal and insertion order.LinkedHashMap can be understood as a combin ...
Added by sports on Sat, 05 Mar 2022 04:27:20 +0200
Java 8 concurrent programming -- a minimalist introduction
introduce
Process and thread are the methods to realize concurrency. A process is a program instance that runs independently and is directly scheduled and managed by the operating system. Concurrency can also be realized through threads inside the process, which is often used for asynchronous processing or parallel execution of java.
Runable ...
Added by chopficaro on Sat, 05 Mar 2022 04:25:06 +0200
Spring MVC interceptor and exception handling
Interceptor
Interceptor configuration
Interceptors in spring MVC are used to intercept the execution of controller methods.
Interceptors in spring MVC need to implement HandlerInterceptor.
package com.atguigu.springmvc.interceptor;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAn ...
Added by mancroft on Sat, 05 Mar 2022 04:19:59 +0200
Input and output processing
Java IO
Input (in) / output (out) Persistent storage File, memory, keyboard (data source) - > program - > file, memory, console (destination)
Data source - > program: input (read data) in Program - > console: output (write data) out File: a collection of permanently stored data File storage media: USB flash disk, hard di ...
Added by bigrollerdave on Sat, 05 Mar 2022 04:17:04 +0200
Based on hongsoft face recognition technology, real-time identity authentication and check-in statistics of freshmen are realized
Due to the needs of work and business, the author has developed a set of freshman enrollment identity verification system, which is used to verify the identity of Freshmen in real time when they enter school (the Ministry of education requires freshmen to conduct face comparison when they enter school), and count the check-in situation of Fresh ...
Added by fatbobo on Sat, 05 Mar 2022 04:07:38 +0200
Teach you how to integrate Springboot+Maven+Mybatis with IDEA
IDEA teaches you how to integrate Springboot+mybatis+maven
Recently, I encountered a series of problems when trying to write an introductory springboot project with IDEA. I read a lot of articles on the Internet, but I didn't find a perfect solution, so I plan to write a little white tutorial and take this opportunity to consolidate it.
I Pro ...
Added by genius_supreme on Sat, 05 Mar 2022 03:49:56 +0200