下载安装
1、下载地址和下载方式
github地址为:
https://github.com/liumingmusic/generator-project
两个项目git地址为:
https://github.com/liumingmusic/generator-fast.git
https://github.com/liumingmusic/generator-project.git
也可以使用Download ZIP进行压缩包下载,解压进行使用。
2、初始化数据库
下载下来的generator-fast项目文件夹doc中有db.sql数据库脚本。在mysql中新建数据库generator-fast
,将db.sql进行脚本导入,数据库新建编码格式为utf-8。
3、项目导入
使用eclipse
或myeclipse
进行导入。导入完成需要在线下载项目所依赖的jar包。
注:maven默认的下载地址在国外,需要修改maven中的settings.xml文件,将下载的地址修改为阿里的地址,加快下载地址。在mirrors标签中新增如下代码即可。
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>