在idea中创建一个maven web工程及解决工程创建过慢问题
在idea中创建一个maven web工程及解决工程创建过慢问题
1.创建maven web工程
- 插件好的maven工程默认没有java和resources文件夹,需要自己手动创建然后分别mark as root, sources root
2.idea配置阿里云中央仓库
参考文档:https://www.cnblogs.com/sword-successful/p/6408281.html
在idea中配置完maven后,可以修改中央仓库的地址为阿里云中央仓库地址,可以加快maven工程的创建速度,引入jar包时也更快。
步骤:
-
找到maven的settings.xml所在位置,默认是用/User/.m2/settings.xml,我创建maven项目时使用的都是D:\JavaEE\16.Maven\apache-maven-3.3.9\conf\settings.xml,打开,找到mirrors标签,替换为如下:
<mirrors> <!-- mirror | Specifies a repository mirror site to use instead of a given repository. The repository that | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. | <mirror> <id>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror> --> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
-
再创建maven工程时选择该settings.xml即可。