GZHU Software Direction Comprehensive Course Design-Course Management System (Qt+mysql)
Preface
Author: Light as the breeze cyfDate: 2021/1/4-2021/1/11This article comes from the Comprehensive Course Design of Software Direction in Senior Three School
1. Topics and Contents of Course Design
1. Basic Facts
(1) Students belong to only one class (e.g. Accounting 181) (2) There are six classes in Grade 18 of the Accounting Dep ...
Added by dadamssg on Thu, 14 Oct 2021 20:11:03 +0300
[learning notes] MyBatis learning notes
This paper is a dynamic node MyBatis tutorial My study notes.
Chapter I
1. Three tier architecture
(1) Functions of three layers
User Interface Layer: accepts user data and displays the processing results of requests, including jsp, html, servlet, etc. Corresponding controller package; Business Logic Layer: accept the data passed from the ...
Added by hazy on Tue, 12 Oct 2021 10:26:43 +0300
Shang Silicon Valley online education 10: home page data display
1. Homepage data banner display (Backend)
1.1 create sub module service in service_cms
1.2 create profile
In application.properties
# Service port
server.port=8004
# service name
spring.application.name=service-cms
# mysql database connection
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql:/ ...
Added by akrytus on Sun, 10 Oct 2021 17:31:19 +0300
MySQL incremental backup_ Restore_ reduction
Enable binary log function
Set the storage directory and file name prefix of binary log files in the configuration file / etc/my.cnf:
log-bin=/var/lib/mysql/mybinlog/mysql-bin
server-id=1
Enable exclusive tablespaces:
innodb_file_per_table=1
explain:
1. According to the above configuration, after the database service is restarted, ...
Added by jnewing on Sun, 10 Oct 2021 14:54:17 +0300
MySQL puzzle solving - GROUP BY implicit sorting
What is the concept of GROUP BY implicit sorting in MySQL? The main reason is that other RDBMS do not have such a concept. If you have not carefully understood the concept, you will feel a little confused about it. Let's take a look at the introduction of the official document first:
The chapter ". 2.1.14 ORDER BY Optimization" in th ...
Added by inrealtime on Sun, 10 Oct 2021 07:53:01 +0300
SQL injection details 23-28
Less-23 (filter annotation symbols -- union joint injection)
Summary of level 23: Through manual test, it is found that # and – + are filtered in this level. We can only find ways to close single quotation marks, and there are many closing methods. There are also many closing methods in the following injection process. The rest ca ...
Added by matrixd on Fri, 08 Oct 2021 12:54:50 +0300
Java seckill System IV: high concurrency optimization
This article is Optimization of Java high concurrency spike API Course notes.
Editor: IDEA
Java version: java8
Previously:
I Second kill system environment construction and DAO layer design
II Second kill system Service layer
III Second kill system web layer
High concurrency optimization analysis
Where does concurrency occur? For ...
Added by mishasoni on Thu, 07 Oct 2021 23:16:51 +0300
2021SC@SDUSC Yamada Zhiyun 2. Analysis of seafobj: 1
2021SC@SDUSC First, let's list the seafobj Directory:
backends
utils
__init__.py
blocks.py
commits.py
commit_differ.py
db.py
exceptions.py
fs.py
objstore_factory.py
Open__ init __.py: see
from .commits import commit_mgr
from .fs import fs_mgr
from .blocks import block_mgr
from .commit_differ import CommitDiffer
So let's first analyze exce ...
Added by Lucnet on Thu, 07 Oct 2021 21:41:26 +0300
PageHelper underlying source code to understand
The more you know, the more you don't know
Friends who have used the Mybatis framework must have heard of PageHelper, a pagination artifact? In a simple sentence, PageHelper.startPage(pageNo,pageLimit) can help us realize paging! Did YYDS? No more nonsense, let's start exploring the mystery
Daily use
At present, many projects are based ...
Added by Joeker on Wed, 06 Oct 2021 00:31:37 +0300
Multi table associated query of database
Table association concept Table represents an entity in life, such as department table dept and employee table emp. Table association represents the relationship between tables, such as department and employee, commodity and commodity classification, teacher and student, classroom and student.
At the same time, we should also know that table ...
Added by ToddAtWSU on Tue, 05 Oct 2021 23:33:21 +0300