Quick Start - shenliuyang/development GitHub Wiki
在开始此练习之前请确保已阅读并理解前面的"开发规约"和"知识点"基础部分,按照规约和对知识点的理解完成此整个练习。
- 安装"gradle3.0":https://gradle.org
- 安装Jdk-8.0.x以上版本
- 安装"Eclipse 3.7.x":http://www.eclipse.org 以上版本
- 安装"Eclipse git plugin":http://www.eclipse.org/egit/download/
git http://123.57.228.174/shenliuyang/tutorial.git
tutorial | |--tutorial-bean | |--tutorial-dao | |--tutorial-service | |--tutorial-webapp
如上图所示,生成的范例工程包含以上四个模块:
- tutorial-bean模块包含所有必须的Entity对象
- tutorial-dao模块是基于Spring Data jpa提供数据接口
- tutorial-service提供一切service,utils
- tutorial-webapp模块是通用的可部署的Web程序。
使用mave命令构建工程
mvn clean install mvn eclipse:eclipse
使用Idea和NetBeans的可以用类似命令生成相应IDE的工程,使用Eclipse的导入工程的功能(File→Import…→General→Existing Projects into Workspace)完成已生成工程的导入。