Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
app
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
hel-guide
app
Commits
bd1b243c
Commit
bd1b243c
authored
Aug 14, 2017
by
JingChao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates create-project.md
Auto commit by GitBook Editor
parent
e2537deb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
0 deletions
+58
-0
create-project.md
create-project.md
+58
-0
No files found.
create-project.md
0 → 100644
View file @
bd1b243c
# 新开项目
本章节将引导您从零开始,创建一个可以运行的 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 下载源码,编译安装
\ No newline at end of file
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