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

What if IntelliJ IDEA is slow to create Maven projects?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

The purpose of this article is to share with you what happens when IntelliJ IDEA is slow to create Maven projects. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

IntelliJ IDEA is slow to create a maven project, even stuck.

Reason

According to the nature of maven archetype, IDEA actually executes the mvn archetype:generate command, which needs to specify an archetype-catalog.xml file when it is executed.

The parameter to this command is-DarchetypeCatalog. Available values are: remote,internal, local, etc., which is used to specify where to get the archetype-catalog.xml file.

Remote-- points to Catalog of Maven Central Warehouse

Internal--maven-archetype-plugin built-in

Local to local--, location is ~ / .m2/archetype-catalog.xml

The default is remote, which downloads the archetype-catalog.xml file from the http://repo1.maven.org/maven2/archetype-catalog.xml path.

The http://repo1.maven.org/maven2/archetype-catalog.xml file is about 3-4m, and the download speed is very slow, causing the creation process to get stuck.

Solution one

Add the archetypeCatalog=internal parameter when creating the Maven project, as follows:

Solution two

Add the-DarchetypeCatalog=internal parameter to the VM Options of maven as follows:

Thank you for reading! This is the end of the article on "what happens when IntelliJ IDEA is slow to create Maven projects?". 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

Servers

Wechat

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

12
Report