settings.xml configuration file not found for Maven plug-in of IntelliJ IDEA

I. overview Apache Maven is a software engineering management and integration tool. Based on the concept of project object model (POM), Maven is able to manage project construction, reporting and documentation through a central information management module. There are many advantages of building proje ...

Posted by vbzoom.com on Fri, 21 Feb 2020 16:04:25 +0100

Artifact & GitLab CI continuous integration practice

GitLab CI enables you to create multiple builds and evaluate whether each code submission passes the test and the impact on your product. In the process of building, a large number of binary files will be generated. If these files are not managed correctly on a large scale, the binary file management will be confused. In order to overcome thi ...

Posted by cullouch on Wed, 19 Feb 2020 12:26:13 +0100

The simplest HelloWorld example of aspectJ

The simplest HelloWorld example of aspectJ This is the introduction of aspectJ. What's the difference between aspectJ and aop? aspectJ can also implement aop functions. aop generally refers to spring aop, which is a set of annotations such as @ Aspect/@Pointcut/@Before/@Around. The implementation prin ...

Posted by Benjigga on Wed, 19 Feb 2020 08:27:02 +0100

springboot2.x Integrated Web Service

background Recently, when some parts of the project call each other, they are not realized by Http(post/get), but by web service. Although they have been exposed to the way of web service before, they haven't had a chance to study it. They just imitate and write according to the rules and don't build ...

Posted by vanderlay on Tue, 18 Feb 2020 05:23:40 +0100

Spring Boot returns XML

In general, RESTful is to return json. Sometimes it may be necessary to return xml. What should we do? Jackson Maven adds jar file import <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </dependency& ...

Posted by POGRAN on Tue, 18 Feb 2020 04:40:45 +0100

Crazy God said that day1: idea2019.3.2+maven set up springboot project

Catalog 1.idea configures maven warehouse (alicloud image) 2. Use IDEA to quickly build springboot project 1. Select project construction method: default to go to official website. 2. Fill in project information 3. Select dependent components 4. Project name and project path 3. Running the spr ...

Posted by willc on Wed, 12 Feb 2020 11:41:54 +0100

idea creates maven's springboot project

1. Create a project: 1. Create a new project: 2. Click next 3. Choice dependency: Select a web project here 4. Customize the project name and path: The structure path of the created project is as follows: Project Start: Click Run to run The startup log is as follows: Indicates ...

Posted by l9pt5 on Sat, 01 Feb 2020 05:52:48 +0100

Comparison of running applications with maven and fat jar/war in spring boot

Article Directory brief introduction Spring Boot Maven Plugin Run the application using the Maven command Run the application as a fat jar/war package Detailed War File Detail jar file How to choose Comparison of running applications with maven and fat jar/war brief introduction In the previous ...

Posted by kye on Tue, 28 Jan 2020 05:24:43 +0100

LINUX Install nexus Private Server and Use

Download and unzip the nexus package #This download version 2.14.3-02 can be updated to 3.13.0-01 # wget "https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.14.3-02-bundle.tar.gz" # tar xfvz nexus-2.14.3-02-bundle.tar.gz Configuring nexus environment variables # cd /etc # vi profile i Enter edit ...

Posted by bqheath on Mon, 20 Jan 2020 20:02:19 +0100

Leyou mall 1 - project construction

You can visit Code cloud - Leyou mall To get the engineering code of Leyou mall. You can visit Baidu cloud leyouyou mall Password: ppzy to get information about Leyou mall. 1, Create parent project Maven Project to manage dependencies     GroupId: the unique identifier in the project, which corresponds to the package structure in java. Her ...

Posted by Pioden on Fri, 17 Jan 2020 14:01:24 +0100