Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hel-developer-guide
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenhao
hel-developer-guide
Commits
51e86e9e
Commit
51e86e9e
authored
Aug 03, 2017
by
高洋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates project-create.md
Auto commit by GitBook Editor
parent
9b978bf4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
8 deletions
+59
-8
project-create.md
project-create.md
+59
-8
No files found.
project-create.md
View file @
51e86e9e
...
...
@@ -2,18 +2,71 @@
本章节将引导您从零开始,创建一个可以运行的 Demo 工程。此工程基于HEL融租易标准版,包含一个 demo 实例。
## 后端项目
## 开发工具准备
-
JDK 1.8 及以上
-
IntelliJ IDEA 或 Eclipse
-
Git
-
redis 3.0 及以上
-
maven 3.3 及以上
-
Tomcat 7+ (
**不支持 Tomcat 6**
)
-
数据库(任选)
-
Mysql server 5.6 及以上
-
SqlServer 2012 及以上
-
Oracle 9 以上
-
Navicat Premium(或其他)
### 软件安装
#### Java 安装
### 确定项目信息
1.
在
[
Oracle 官网
](
https://nodejs.orghttp://www.oracle.com/technetwork/cn/java/javase/downloads/index.html
)
下载对应平台的 JDK 1.8 以上的环境。
2.
本地执行安装文件,安装 JDK 环境。
3.
Win 在环境变量系统变量中 path 配置 JDK 的环境变量指向 JDK 安装目录下
` JDK/bin `
。
4.
配置完成后打开 cmd 执行
` javac `
,有提示则说明环境安装成功。
> eclipse 中 JRE 的配置需要指定 JDK 目录,不能是 JRE。(maven 需要 JDK)
#### Git 安装
1.
在
[
Git 官网
](
https://git-scm.com/download/
)
下载对应平台的 Git。
2.
本地执行安装文件, 安装 Git 环境。
3.
Win 在环境变量中系统变量的 path 配置 Git 的环境变量指向 Git 安装目录下的
` /bin `
。
4.
配置完成后打开 cmd 执行
` git `
,有提示则说明环境安装成功。
[
Git 简明教程
](
git_guide.md
)
> 对于 Windows,安装 Git 以后,你可以在任意目录右键,`Git Bash Here`
>
> 打开的 MINGW 命令窗口可以执行 **兼容 linux 系统** 的命令,如`rm`,`ls` 等
#### Maven 安装
1.
在
[
Maven 官网
](
http://mirror.bit.edu.cn/apache/maven/
)
下载对应平台的合适的 maven 版本的压缩包。
2.
本地解压压缩包。
3.
Win 在环境变量中系统变量的 path 配置 maven 的环境变量指向 maven 解压目录下的
` /bin `
。
4.
配置完成后打开 cmd 执行
` mvn -v `
,有提示则说明环境安装成功。
#### Redis 安装
1.
在
[
Redis win 官网
](
https://github.com/MSOpenTech/redis/releases
)
下载最新的 redis 版本的压缩包。
2.
本地解压压缩包。
3.
Win 在解压目录下打开 cmd 执行
` redis-server.exe redis.windows.conf `
,有提示则说明 Redis 已经启动。
4.
Win 平台下如果启动失败,修改 redis.windows.conf 文件中的 maxheap 为
` maxheap 1024000000 `
。
**注:**
开发需要依赖 Redis 环境,所以在启动后台程序时,请确保 Redis 已经启动,如redis需配置集群,
[
请参考Redis集群部署
](
/后端开发/redis.md
)
*
redis GUI 客户端下载 :http://redisdesktop.com/
*
redis 命令手册:http://doc.redisfans.com/
*
redis 清空缓存命令:flushall
> Mac, Linux 用户, 请到 http://redis.io 下载源码,编译安装
### 新建项目 (依赖融租易HEL1.0)
#### 确定项目信息
1.
groupId 本项目的代号,比如融租易项目,代号为 hel
2.
artifactId 本项目的顶层目录名称,使用项目代号(第一个字母大写) +Parent,如 HelParent
3.
package 包名称,使用项目代号 + core ,如 Hel.core
4.
archetypeVersion 是指模板项目的版本,可以使用以下版本号
> 1.0-RELEASE
### 新建项目 (融租易HEL1.0)
确定上述信息后,可以使用如下命令新建项目:
`注意`
maven-archetype-plugin
`2.4`
及以下版本可以正常使用下面命令
...
...
@@ -109,10 +162,8 @@ mvn clean install -Dmaven.test.skip=true
```
mvn eclipse:eclipse
```
3.
将所有工程导入 IDE 工具(Eclipse,IntelliJ IDEA)中
4.
配置 Server ,配置 JNDI 数据源,参照
[
多数据库配置
](
chapter1.1.md
)
-
需要 Tomcat 7+, 不支持 Tomcat 6
5.
将 hel 工程发布到 tomcat/webapps,运行
### 更新HEL依赖
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment