Spring ----------- spring and the Web
preface
To use the Spring framework in a web project, we must first solve the problem of obtaining the Spring container in the web layer (here referred to as Servlet). As long as the Spring container is obtained in the web layer, the Service object can be obtained from the container.
1, Problems of using Spring in Web projects
Exampl ...
Added by dc277 on Sat, 12 Feb 2022 12:51:21 +0200
(BDCI-CCF) taxi invoice identification
Reference article:
Baidu AI strategy: Taxi ticket identification_ Can I waste my blog - CSDN blog (complete python source code attached) entry case based on tensorflow and opencv_ Invoice identification I: positioning of key areas_ Xiaobai comes to move - CSDN blog_ python invoice identification
Note: thanks to the teammates who completed the ...
Added by neorunner on Sat, 12 Feb 2022 12:47:01 +0200
vulnhub shooting range - the planes: Earth
THE PLANETS:EARTH
prepare
Attacker: kali
Target: the planes: Earth NAT 192.168.91.0 network segment
Download connection
[https://www.vulnhub.com/entry/the-planets-earth,755/]
Information collection and utilization
Host discovery
https://github.com/czheisenberg/MyCode/blob/master/Scan/scapy/ping.py
As shown in the figure, use python s ...
Added by pureDesi on Sat, 12 Feb 2022 12:46:46 +0200
MySQL optimization lesson 2: Explain and index practice
Explain use and explanation
Explain tool introduction
Use the EXPLAIN keyword to simulate the database optimizer to execute SQL statements and analyze the performance bottlenecks of your query statements or structures Add the explain keyword before the select statement. MySQL will set a flag on the query. Executing the query will return the i ...
Added by lesmckeown on Sat, 12 Feb 2022 12:42:36 +0200
Akka of Scala concurrent programming
summary
Akka is a library developed using Scala. It is based on event driven toolkit for building high concurrency projects
Akka characteristics:
Provide an asynchronous, non blocking, high-performance event driven programming modelThe built-in fault tolerance mechanism allows the Actor to recover or reset in case of errorLightweight ...
Added by reeferd on Sat, 12 Feb 2022 12:37:20 +0200
Discrete Mathematics Experiment 1
Experiment Title: simple diagramming, judgment of connected graph, Euler graph and Hamiltonian graph
Purpose of the experiment:
Master the definition and judgment method that can be simplified;Master the judgment methods of connected graph and Euler graph;Master the search method of Euler loop;Understand the practical application of Euler cha ...
Added by ungovernable on Sat, 12 Feb 2022 12:34:59 +0200
JavaScript knowledge points sorting - function
catalogue
1, Concept of function
2, Use of functions
2.1 function declaration
2.2 calling functions
2.3 function encapsulation
3, Parameters of function
3.1 formal parameters and arguments
3.2 mismatch between the number of function formal parameters and real parameters
4, Return value of function
4.1 return statement
4.2 return term ...
Added by onlinegs on Sat, 12 Feb 2022 12:11:41 +0200
Training notes of the 8th web front end (JS form and Ajax)
preface
This article records my notes on learning JS forms and Jquery Ajax
1. JS form
Form is a very common way for our page to transmit data to the background. Before sending data (request), we should verify the legitimacy of a series of data on the page, save unnecessary wrong data transmission, and improve the user's experience.
1.1. Ge ...
Added by mark_18 on Sat, 12 Feb 2022 11:58:41 +0200
Crazy God said Redis notes
Nosql overview
Why use Nosql
Stand alone MySQL Era In the 1990s, the number of visits to a website was generally not too large, and a single database was sufficient. However, with the increase of users, the following problems occurred:
The amount of data is too large for one machineThe index of data (B+ tree) can't fit into a machine's m ...
Added by chevys on Sat, 12 Feb 2022 11:43:15 +0200
Web front end training 7 array / function
array
Definition of array
<script type="text/javascript" >
/*Definition of array*/
//Implicit definition
var arr1 = [];
console.log(arr1);
var arr2 = [1,2,'a',true];
console.log(arr2);
//Direct instantiation
var arr3 = new Array(1,2,3);
console.log(arr3);
//Define the array and set the length
var arr4 = new Array(5);
console.log();
...
Added by garethdown on Sat, 12 Feb 2022 11:27:11 +0200