Quick Start - shenliuyang/development GitHub Wiki

Quick Start

在开始此练习之前请确保已阅读并理解前面的"开发规约"和"知识点"基础部分,按照规约和对知识点的理解完成此整个练习。

基础软件安装

  1. 安装"gradle3.0":https://gradle.org
  2. 安装Jdk-8.0.x以上版本
  3. 安装"Eclipse 3.7.x":http://www.eclipse.org 以上版本
  4. 安装"Eclipse git plugin":http://www.eclipse.org/egit/download/

获取Tutorial Skeleton

git  http://123.57.228.174/shenliuyang/tutorial.git 

范例工程Layout

tutorial
  |
  |--tutorial-bean
  |
  |--tutorial-dao
  |
  |--tutorial-service
  |
  |--tutorial-webapp

如上图所示,生成的范例工程包含以上四个模块:

  1. tutorial-bean模块包含所有必须的Entity对象
  2. tutorial-dao模块是基于Spring Data jpa提供数据接口
  3. tutorial-service提供一切service,utils
  4. tutorial-webapp模块是通用的可部署的Web程序。

构建工程

使用mave命令构建工程

mvn clean install
mvn eclipse:eclipse

使用Idea和NetBeans的可以用类似命令生成相应IDE的工程,使用Eclipse的导入工程的功能(File→Import…→General→Existing Projects into Workspace)完成已生成工程的导入。

⚠️ **GitHub.com Fallback** ⚠️