IDEA建空的项目(已有的项目架构)

###一. 用工具创建(IDEA里建空项目)
IDEA建空的项目(已有的项目架构)_第1张图片

GroupId, ArtifactId,Version,Repository 要相同

com.handarui.archetype
archetype-server-archetype
1.0.1-SNAPSHOT
http://nexus.jingzheit.com:8081/repository/maven-snapshots/


然后 Next -->Next 一路下去创建,创建成功后,需要在disconf里配置文件,然后再Rebuild,就能新建一个空项目了。(**注意 “.” 之间没有空格**)

###二、用maven 命令创建

生成空项目(需要改些参数)
mvn archetype:generate -DarchetypeGroupId=com.handarui.archetype -DarchetypeArtifactId=archetype-server-archetype -DarchetypeVersion=1.0.0-SNAPSHOT -DartifactId=hotboom-manager -Dversion=1.0.0-SNAPSHOT -Dpackage=com.garfield.hotboom.manage -DgroupId=com.garfield.hotboom -DarchetypeCatalog=remote -X

生成数据库Do
mvn -Dmybatis.generator.contexts=Mysql -Dmybatis.generator.overwrite=true mybatis-generator:generate

需要在disconf里配置文件,然后再Rebuild,就能新建一个空项目了。

你可能感兴趣的:(IDEA建空的项目(已有的项目架构))