HTML learning notes
HTML
1: Basic cognition
Understanding web pages
1: What is a web page
Text, pictures, audio, video and hyperlinks
2: What is the essence behind the web page
Front end code
3: What is the code transformed into an interface
Browser parsing and rendering
Five browsers
1: Browser
It is the platform for web page display and operation
2: ...
Added by roshanjameer on Sun, 06 Mar 2022 15:06:05 +0200
Using go to realize mysql batch test data generation TDG
Using go to realize mysql batch test data generation TDGComponent code: https://gitee.com/dn-jinmin/tdgDownload go get gitee com/dn-jinimin/tdgAt present, it is only for mysql and only supports batch addition of multiple single tables. The associated addition has not been completed01. Let's goThe main reason for developing TDG is that many frie ...
Added by nicko on Sun, 06 Mar 2022 13:49:30 +0200
MySQL foundation - DQL (Data Query Language)
1, Basic query
Syntax: select Query list from Table name;
characteristic:
1,The query list can be fields, constant values, expressions and functions in the table
2,The result of the query is a virtual table
database structure
Employee table
Department table
Location table
List of types of work
USE ...
Added by Gargouil on Sun, 06 Mar 2022 13:10:19 +0200
First JDBC program
JDBC
1: Database driven
For example: sound card, graphics card, driver, etc;
2: JDBC
In order to simplify the (unified database) operation of developers, SUN company provides a (Java database operation) specification, commonly known as JDBC. The implementation of these specifications is done by specific manufacturers. For developers, we onl ...
Added by andrin on Sat, 05 Mar 2022 17:12:12 +0200
[must see] this article is enough for a complete collection of SQL statements
SQL, namely structured query language, is a database query and programming language, which is used to access data and query, update and manage relational database system; SQL language is the widely used standard language of relational database and the basis of various database interaction methods. The following will show how to use SQL to acces ...
Added by cmaclennan on Sat, 05 Mar 2022 12:31:30 +0200
Microservice notes 02
01. Hystrix circuit breaker
1. General
Problems faced by distributed systems
Problems faced by distributed systems Applications in complex distributed architecture have dozens of dependencies, and each dependency will inevitably fail at some time.
Service avalanche
When calling between multiple microservices, suppose that microse ...
Added by BrandonE97 on Sat, 05 Mar 2022 09:21:08 +0200
Day03 Shiro study notes
1. Introduction to Shiro
Apache Shiro is an open source security framework that provides authentication, authorization, cryptography, and session management. Shiro framework is intuitive and easy to use. At the same time, it can also provide robust security. Although its function is not as powerful as spring security, it is still enough in ord ...
Added by DimArchon84 on Sat, 05 Mar 2022 08:21:46 +0200
MySQL knowledge summary III (MySQL query data)
MySQL knowledge summary III (MySQL query data)
MySQL knowledge summary I (MySQL common terms) MySQL knowledge summary II (basic MySQL operation) MySQL knowledge summary III (MySQL query data) MySQL knowledge summary IV (SQL injection) MySQL knowledge summary 5 (MySQL functions and operators)
Keyword execution order1,from2,join on3,where4,grou ...
Added by szcieder on Sat, 05 Mar 2022 07:39:31 +0200
Methods, common problems and solutions of modifying root password in MySQL
Method of modifying root password in MySQL
As the first barrier to database security, the root account and its password. Learning to manage the root password is undoubtedly a basic skill for the gatekeeper and the unlocking man.
Know the password
When the password is known, you can log in to the MySQL database and modify it through alter ...
Added by mattcooper on Sat, 05 Mar 2022 03:30:32 +0200
mysql learning notes illustrate transaction propagation behavior
introduction
In this blog post, the ape is mainly aimed at the application of transactions, and there are seven types of communication behaviors of transactions. These seven communication behaviors have different application scenarios. The following ape will discuss the respective characteristics of the seven communication behaviors
Functiona ...
Added by Salkcin on Fri, 04 Mar 2022 16:13:05 +0200