Commit c7954cb0 authored by Quxl's avatar Quxl

Merge branch 'master' of http://gitlab.egolm.com/key/sentinel.git

Conflicts:
	README.md
parents bb4e75e0 68eaac2f
#环境搭建
##开发环境搭建
###Eclipse安装
请到官网下载最新版本Eclipse并安装
最新版本Eclipse 已经内置集成Maven,Git等必要插件
安装完成后启动Eclipse
###GIT项目导入
1.采用maven方式导入项目
点击File->import->Project for Git,选择Clone URI,输入Git代码地址: http://gitlab.egolm.com/key/sentinel.git
2.修改项目编译JDK,请使用JDK8编译和运行项目
3.安装本地Maven依赖,Sybase驱动
install:install-file -Dfile=D:/jconn4.jar -Dpackaging=jar -DgroupId=com.sybase -DartifactId=jdbc -Dversion=4
D:/jconn4.jar 为驱动程序jar包的绝对路径
4.Maven依赖自动下载
刚导入项目依赖会报错,通过选中项目右键选择RunAS,再选择Maven install,控制台会下载项目所依赖的包。
###项目启动
1.项目启动类: com.egolm.sentinel.SentinelApplication
2.邮件单击启动类 选择RunAs > Java Application
###项目访问
监控平台登陆: http://localhost:30001/sentinel/login.html
监控平台首页: http://localhost:30001/sentinel/http.html
SQL测试首页: http://localhost:30001/sentinel/sqltest.html
###生产环境部署
Springboot项目本身集成Web容器,只需要编译成Jar运行即可
1.项目右键 RunAs > Maven install
2.等待编译完成,到target目录下Copy编译好的Jar包sentinel-0.0.1-SNAPSHOT.jar
3.运行Jar包 java -jar sentinel-0.0.1-SNAPSHOT.jar
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment