Graduation project - Title: parking lot management system based on big data analysis
1 Preface
Hi, everyone, this is senior Dan Cheng. Today, I'd like to introduce you to a python web project (currently demo, under development.)
Parking lot management system based on big data analysis (currently demo, under development.)
You can use it for graduation design
2 system effect
3 Preface
The current project is a park ...
Posted by TropicalBeach on Fri, 22 Oct 2021 19:17:02 -0700
Chapter 2 Mapper mapping file of Mybatis framework
#1, Basic use
1.mybatis-config.xml template
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.jianan.mapper.xxx">
</mapper>
2. Top level elements
The real power of MyBatis lies in its st ...
Posted by Yeodan on Fri, 22 Oct 2021 19:07:44 -0700
Chapter 1 global configuration file of Mybatis framework
1.mybatis-config.xml template
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
</configuration>
2. properties
Use example
These properties can be set in the child elements of the propertie ...
Posted by programming_passion on Fri, 22 Oct 2021 19:03:55 -0700
Spring -- declarative transaction control
catalogue
Programming transaction control related objects
Three objects of programming transaction control
Declarative transaction control based on XML
Implementation of declarative transaction control
Configuring declarative transaction control using annotations
Programming transaction control related objects
Three objects of pr ...
Posted by erasam on Fri, 22 Oct 2021 18:23:52 -0700
Nginx -- matching rules in nginx
preface
Powerful functions in nginx, such as rewrite and proxy_pass is inseparable from his matching rules. Understand nginx and learn advanced nginx usage. You must know all kinds of matching priorities and matching syntax
1, nginx location
1. Syntax rules and priorities
location [=|~|~*|!~|!~*|^~] /uri/ {
...
}
= ...
Posted by busin3ss on Fri, 22 Oct 2021 18:06:29 -0700
Want to thoroughly understand how large manufacturers achieve Redis high availability? Just read this article! (1.2W, recommended Collection)
High Availability HA (High Availability) is one of the factors that must be considered in the architecture design of distributed systems. It usually refers to reducing the time when the system cannot provide services through design.
Assuming that the system can always provide services, we say that the availability of the system is 100%. If the ...
Posted by double-f on Fri, 22 Oct 2021 18:03:56 -0700
[design mode] Why is it called bridging mode? I don't understand after learning!
What is Bridge mode
concept
The definition of bridging pattern is as follows: * * separate abstraction from implementation so that they can change independently** This concept is very abstract, which means to separate the abstract part from the implementation part, so as to reduce the coupling between the abstract part and the implementation ...
Posted by jennatar77 on Fri, 22 Oct 2021 17:57:58 -0700
Chapter 9 Spring Security CSRF defense
Spring Security has enabled CSRF defense by default.
What is CSRF
CSRF is a browser cross site forged request. Hackers can induce users to perform some unexpected behaviors, which allows attackers to partially bypass the homologous strategy.
For example, after the user logs in to system A, the user can modify his mailbox, and then the browse ...
Posted by upnxwood16 on Fri, 22 Oct 2021 17:44:39 -0700
Multithreading foundation 1
Let's start with two concepts: process and thread
Process: a running program, which is an independent unit of the system for resource allocation and call. Each process has its own memory space and system resources.
Thread: a single sequent ...
Posted by sargus on Fri, 22 Oct 2021 17:14:40 -0700
Chapter 6 Introduction to Shell script programming
2.7.11 script security and set
set command: can be used to customize the shell environment
$- variable
h: hashall, after the option is turned on, the Shell will hash the path where the command is located to avoid querying every time. Turn off the H option through set +h i: Interactive comments, including this option, indicates that the curre ...
Posted by phynias on Fri, 22 Oct 2021 17:11:27 -0700