Completion of dark horse tourism project and relevant precautions
I specially publish a blog to record my first project. Here I summarize some problems during my project. The whole project takes about 5 days. I don't talk much nonsense and get to the point.
The project content is roughly divided into the following parts
1, Import project
Open IDEA, click Maven on the right, and import the Maven project tra ...
Added by pouncer on Sat, 08 Jan 2022 14:04:40 +0200
mvnd is so much faster than maven from entry to large-scale system practice
brief introduction
mvnd is a new build tool based on {maven} with reference to} gradle and} takari, but faster than it;
For more information, see the official website: github.com/apache/mave...
install
Download mvnd
Enter github.com/apache/mave...
I downloaded mvnd-0.7.1-windows-amd 64 zip
After downloading, find a path and unzip it
to ...
Added by papa on Wed, 05 Jan 2022 17:31:20 +0200
Docker topic series 9: docker building and configuring maven private server Nexus
1, DOCKER builds MAVEN private server
1. Pull the image
docker pull sonatype/nexus3
2. Start the image
docker run -d -p 8081:8081 --name nexus sonatype/nexus3
3. Configure authentication information
In apache-maven-3.5 Settings under 3 \ conf XML
Find label
<server>
<id>nexus-releases</id>
<usernam ...
Added by minifairy on Tue, 04 Jan 2022 20:18:11 +0200
Maven basic learning record
Maven
The notes are based on the video https://www.bilibili.com/video/BV1Fz4y167p5 You can refer to the video for unclear places in the learning records
1.1. Four features of maven
1.1.1. Dependency management system
Maven is not a dead reference. It can be modified according to its own needs
The example code is as follows:
<dependenci ...
Added by Omri16 on Tue, 04 Jan 2022 13:59:49 +0200
Use of Maven for building tools
1, Foreword
For the development of a java project, we will compile, test, package and deploy these construction processes before going online. If there are few files, we can use the commands Java – > javac – > jar to complete the above construction process. But as the project gets bigger and bigger, there are more and more fi ...
Added by amax on Mon, 03 Jan 2022 21:05:02 +0200
Five articles teach you to master spring five
Integration of Spring and mybatis and weaving of transactions
Integrate Mybatis
Create dependency
We need junit, mysql driver, mybatis, spring webmvc, spring JDBC, aspectjweaver
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4 ...
Added by c0le on Mon, 03 Jan 2022 20:40:11 +0200
Introduction to mybatis
1, Environment construction
create maven web project mybatis01 and add maven dependencies as follows.
<dependency>
<groupid>org.mybatis</groupid>
<artifactid>mybatis</artifactid>
<version>3.4.6</version>
</dependency>
<dependency>
<groupid>mysql</groupid ...
Added by dreamdelerium on Sat, 01 Jan 2022 09:29:39 +0200
Maven learns Maven's dependency management
catalogue
Dependent storage place: repository (warehouse)
Find dependencies through pom files
Cyclic dependence
Dependency version conflict and dependency mediation
Dependency delivery
Dependent scope
Exclusions
Simplification of Dependency Management: Dependency Management
Dependency import
Summary:
Dependency management is a very ...
Added by JasonHarper on Wed, 29 Dec 2021 21:02:58 +0200
Mybatis self study note sharing (many to one and one to many processing)
Continued →
7. Many to one processing
Many to one understanding:
Multiple students correspond to one teacher For students, it is a many to one phenomenon, that is, a teacher is associated with students!
Database design
CREATE TABLE `teacher` (
`id` INT(10) NOT NULL,
`name` VARCHAR(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=I ...
Added by bfuzze_98 on Wed, 29 Dec 2021 16:10:55 +0200
SuperMap iServer&iPortal&iEdge combined with CAS 5.3 server to realize single sign on
Author: Zhang Yongli
1, Environment description of this example
JDK 1.8CAS 5.3apache-maven-3.6.0mysql-5.6.32SuperMap iServer 10.1.3SuperMap iPortal 10.1.3
2, CAS 5.3 basic environment construction and verification
Need reference CAS 5.3 server setup Set up the environment, and use the system default user name and password to verify.
3, C ...
Added by F1Fan on Tue, 28 Dec 2021 18:40:48 +0200