Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to get started with maven quickly

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how to get started with maven quickly. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Basic knowledge

As mentioned in the maven tutorial, maven projects manage dependencies on projects through pom.xml files. In pom.xml, dependencies (that is, third-party jar packages) are managed through dependencies tags and their child tags dependency, as shown in the following figure, which introduces springboot framework and log4j dependencies.

Org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-logging org.springframework.boot spring-boot-starter-log4j2 org.springframework.boot spring-boot-starter-jdbc Mysql mysql-connector-java 5.1.34 org.springframework.boot spring-boot-devtools runtime true org.springframework.boot spring-boot-starter-test test

As you can see, maven's projects are managed by dependency tags, and each dependency tag contains some package information, through which maven can find the corresponding package in the repository and install it. Next, we will explain in detail how to do dependency updates by installing a dependency.

The first step is to search the maven warehouse for the packages you need.

Using Aliyun's warehouse, the editor can go to Aliyun's warehouse service page to find the search package function.

Aliyun Warehouse search package page: https://maven.aliyun.com/mvn/search.

Find the package you need and click to generate dependencies.

The second step is dependency import

In the previous step, you can get the dependency writing of the package you need, write it into the dependencies tag, and import the dependency into the project.

However, there is no way for the project to use the dependency right now, and there are two more steps that need to be taken:

Mvn clean description: clean up the temporary files produced by the project, usually the target directory under the module.

Mvn install description: install dependencies.

The two directives can be merged into mvn clean install-e-U, which clears the temporary files of the project and then forces updates, and displays detailed exceptions.

Easier ways to use maven

The above import-dependent method operates on the command line and is not so friendly to beginners. This shows the advantages of IDE and plug-ins. For example, if you use IDEA for maven dependency updates, IDEA will help you guide the package automatically as long as the corresponding dependency is written in the pom file. For example, if you use VSCode's maven plug-in, it encapsulates the common methods of maven and can be used directly.

Thank you for reading! This is the end of the article on "how to get started with maven quickly". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report