我是maven的新手。这一天,我想创建一个spring mvc项目,所以我找到了spring-mvc-quickstart-archetype,但是如何在Intellij IDEA中使用它?
答案 0 :(得分:1)
你是怎么用它的?在使用原型创建它之后,只需将现有的maven项目导入IDE。
http://wiki.jetbrains.net/intellij/Creating_and_importing_Maven_projects
答案 1 :(得分:0)
我明白了。只需克隆原型和mvn install
它,然后我们就可以使用原型。
答案 2 :(得分:0)
1)将插件“ Maven原型目录”添加到Intelij
1.1) File -> Settings -> Plugins -> Browse repositories...
1.2) Search for "Maven archetype" and look for the "Maven Archetype Catalogs"
1.3) Click on Install button of that plugin. After finished click the restart intelij button
2)基于Spring Boot Simple Archetype在Intelij上创建一个新项目
2.1) File -> New -> Project
2.2) Check the option "Create from archetype" and click the Add Archetype button
2.3) Fill the fields with the archtetype information you want o use
GroupId: org.springframework.boot
ArtifactId: spring-boot-sample-simple-archetype
Version: 1.0.2.RELEASE
Repository: http://central.maven.org/maven2/
2.4) Click OK
这将告诉intelij下载新的原型并创建一个新的Maven项目 根据您选择的原型,在这种情况下,将使用Spring Boot CommandLinner生成一个项目