Usage of mybatis plus conditional constructor wrapper (detailed, simple and clear)

The wrapper is used. Sort out the data and record it for subsequent review. Directory ------------ (you can click the corresponding directory to jump directly) 1, Introduction to conditional constructor relationship Introduction to conditional constructor relationship: Introduction to wapper: 2, Project instance 1. Query according to the ...

Posted by cavedave on Fri, 03 Sep 2021 14:48:36 -0700

Blog Project Building (Path to Coden)

Front End Project Run Command npm install npm run build npm run dev Create a project that, if developed normally, first imports the following dependencies <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.0< ...

Posted by siwelis on Fri, 03 Sep 2021 09:57:08 -0700

Spring Boot 2 learning notes: Container Management

In the previous section, we simply used SpringBoot to complete HelloWorld. This section describes in depth how to use SpringBoot for container management, such as registering components in the container, reading resources, etc 2. Container management 2.1 registering components using configuration classes In Spring, we use Spring's xml conf ...

Posted by mattison on Thu, 02 Sep 2021 23:46:56 -0700

Detailed process of spring boot integrating shiro and session

1. Dependence <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> & ...

Posted by Hell Toupee on Thu, 02 Sep 2021 16:36:38 -0700

Handwriting Spring transaction operations using AOP

Preface AOP is a special feature of Spring. Face-oriented programming provides developers with a new way of development. It does not intrude into business logic, do not modify the code of business logic, and realize some necessary auxiliary functions of programs, such as output log, permission checking, transaction processing, etc. Elegant ...

Posted by patrick99e99 on Thu, 02 Sep 2021 10:58:42 -0700