SpringBoot day 21 - Dao integrates MybatisPlus
SpringBoot - Dao integrates MybatisPlus
In this section, learn how to integrate MybatisPlus with SpringBoot.
1. Introduction to mybatisplus
MyBatis plus (MP for short) is an enhancement tool for MyBatis. On the basis of MyBatis, it only makes enhancements and does not change. It is born to simplify development and improve efficiency. Myba ...
Posted by sgalatas on Mon, 11 Oct 2021 19:07:13 -0700
Advanced use of redis -- redis persistence
brief introduction
Redis provides two persistence methods: RDB (Redis DataBase) and AOF (Append Only File).
RDB, in short, is to generate snapshots of data stored in redis at different time points and store them on disks and other media;AOF implements persistence from a different perspective, that is, record all the write instructions execute ...
Posted by Toneboy on Mon, 11 Oct 2021 19:00:16 -0700
Mysql index summary
1, Index overview
1. Introduction
An index is a structure that sorts the values of one or more columns in a database table. Using an index can quickly access specific information in a database table.
For example, index: if a certain page in the database is regarded as a book, the index is like a book directory. You can quickly find the locat ...
Posted by diegueins on Mon, 11 Oct 2021 17:16:11 -0700
Redis advanced application
1, Master slave replication
Quick start practice
Based on Redis, a Master-Slave architecture is designed, including one Master and two slaves. The Master is responsible for reading and writing Redis and synchronizing data to the Slave. The Slave is only responsible for reading. The steps are as follows:
First, duplicate redis01, for example: ...
Posted by rhunter007 on Mon, 11 Oct 2021 17:12:38 -0700
How to solve the Redis cache penetration problem in the blind date source code?
Redis is a cache solution that we use a lot in our daily work. Using cache can improve the performance of blind date source code and greatly reduce the pressure on the database. However, improper use will also cause many problems. Next, let's take a look at the cache penetration problem in blind date source code development.
Cache penetration ...
Posted by khurramijaz on Mon, 11 Oct 2021 16:03:45 -0700
Python connection to DM8 database
1. Test environment
Add, delete, modify and query Python version 2.7.5 and DM8 database in Window. The following are the notes on stepping on the pit.
SoftwareeditionDM databaseDM 8.0 and abovePythonPython 2.7.5Window10 professionalWindow10 professional
Note: in case of error reporting during implementation, you must see whether there is a so ...
Posted by sherrilljjj on Mon, 11 Oct 2021 11:11:41 -0700
Installing mysql5.7 on linux (CentOs7)
mysql installation
Uninstall the original mysql
#Check whether there is a built-in mariadb
rpm -qa | grep -i mariadb
#If yes, uninstall the built-in mariadb
rpm -e --nodeps mariadb-libs
Modify / tmp directory permissions
chmod -R 777 /tmp
Check for dependencies
#The current package should exist [there are many virtual machines under no ...
Posted by drumhrd on Sun, 10 Oct 2021 19:41:45 -0700
Introduction to Redis6 - learn about NoSQL, installation and data types
title: Redis6 Introduction (I)
NoSQL database
NoSQL database
summary
NoSQL(NoSQL = Not Only SQL), which means "not just SQL", generally refers to non relational databases. NoSQL does not rely on business logic storage, but is stored in a simple key value mode. Therefore, it greatly increases the expansion ability of the databa ...
Posted by someone2088 on Sun, 10 Oct 2021 18:27:47 -0700
Modification of zabbix user and group permissions and admin password
zabbix user and group permissions
summary
All users in zabbix access the zabbix application through the Web front end. Each user is assigned a unique login name and password.
All user passwords are encrypted and stored in the zabbix database.Users cannot use their user name and password to log in directly to the UNIX server unless they are a ...
Posted by andy1398 on Sun, 10 Oct 2021 10:44:37 -0700
The most correct mysql query answer across the network.
Use the SELECT statement for basic queries in the studentsdb database. (1) In the student_info table, query each student's school number, name, birth date information.
SELECT School Number,Full name,Date of birth
FROM `student_info`;
(2) Query the names and home addresses of students whose student_info form number is 0002.
SELECT Full name ...
Posted by sparrrow on Sun, 10 Oct 2021 10:12:52 -0700