[ crazy victory theory ] MybatisPlus notes sorting

MybatisPlus MyBatis-Plus (opens new window) (MP) is a MyBatis (opens new window) On the basis of MyBatis, the enhancement tool is only enhanced without change. It is born to simplify development and improve efficiency. characteristic No invasion: it is only enhanced without change, and its introduction will not affect the existin ...

Posted by MuseiKaze on Sun, 23 Jan 2022 18:10:17 +0100

Jenkins+Maven+Git automatic deployment process (super comprehensive from environment construction to deployment)

Note: the function of this process is that as long as we upload the code to the GIT platform, we don't have to worry about it. jenkins can automatically publish our git original code compilation test deployment to the production environment. We don't have to pack the jar package ourselves every time and then pull it to the linux environment Jav ...

Posted by BLottman on Sun, 23 Jan 2022 05:05:25 +0100

Four days before Spring notes

Spring preschool Foundation rely on 1. Three elements of dependency composition 1.1 group id 1.2 project name 1.3 version number 2. Relationship between coordinates and local warehouse Go to the local warehouse according to the coordinates. Find jar file Here are all paths, pointing to the required files 3. If the dependency ...

Posted by orbitalnets on Sun, 23 Jan 2022 01:05:23 +0100

Detailed explanation of pom file in Maven

Using Maven in the IDE IDE tools MyEclipse Integrated maven plug-in Eclipse ​ Eclipse For Java EE IDEA Integrated Maven plug-in In IDE Configure Maven Specify maven installation directory and configuration fileAutomatically update maven projects: check import projects automatically (2020 version: Ctrl + Shift + O) Create Maven proje ...

Posted by Aleks on Fri, 21 Jan 2022 22:47:23 +0100

Maven configuration settings Detailed explanation of XML content

1. Summary 1.1 settings. What's the use of XML settings. What does an XML file do and why configure it? From settings As can be seen from the file name of XML, it is a configuration file used to set maven parameters. And, settings XML is the global configuration file of maven. POM The XML file is the local configuration of the project. Setti ...

Posted by dpearcepng on Fri, 21 Jan 2022 10:36:23 +0100

Spring02--IOC starting example analysis + essence + case (step by step) + points for attention + extended knowledge

IOC starting example analysis Raw data 1. Create a blank maven project 2. Write a UserDao interface first public interface UserDao { public void getUser(); } 3. Write Dao's implementation class again public class UserDaoImpl implements UserDao { @Override public void getUser() { System.out.println("Get user"); } } 4. ...

Posted by Pottsy on Fri, 21 Jan 2022 07:23:18 +0100

Selection of actual development technology for SpringBoot project

springboot project is a popular java web project. This paper mainly describes the technical selection of the project. This experience has been applied and verified in actual combat. It is quite stable in the production environment (centos7) and has strong scalability. For example, it is very simple to expand redis, mongodb and other cache techn ...

Posted by alan543 on Thu, 20 Jan 2022 13:03:54 +0100

maven authentication when publishing components

1. Release mvn deploy is used to distribute the artifacts generated by the project to the remote Maven warehouse. The components of the local Maven warehouse can only be used by the current user. After being distributed to the remote Maven warehouse, all users who can access the warehouse can use your components. To do this, you need to creat ...

Posted by Oldiesmann on Wed, 19 Jan 2022 05:15:17 +0100

Dynamic management of scheduled tasks based on Spingboot+maven+Quartz

demo of dynamic management of scheduled tasks based on Spingboot+maven+Quartz describe This demo is a demo for dynamically creating scheduled tasks. demo content: dynamically manage scheduled tasks (run, pause, delete, query status, update expression, etc.) demo goal: it mainly supports the dynamic creation and management of multiple sche ...

Posted by phpmixx on Tue, 18 Jan 2022 09:50:59 +0100

Upload open source projects from scratch to Maven central warehouse

introduce For the first time, I was very excited about the official open source project, so I couldn't wait to upload it to Maven central warehouse for users to reference. This tutorial will be explained from scratch, but due to the change of timeliness, readers still need to think about how to deal with the problems in each process. Brie ...

Posted by AshrakTheWhite on Mon, 17 Jan 2022 19:49:03 +0100