本地部署
本文介绍本地环境启动 Apache ShenYu
网关。
环境准备
- 本地正确安装JDK1.8+
- 本地正确安装Git
- 本地正确安装Maven
- 选择一款开发工具,比如IDEA
下载编译代码
- 下载代码
> git clone https://github.com/apache/incubator-shenyu.git
> cd incubator-shenyu
> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true -Djacoco.skip=true -DskipITs -DskipTests
使用开发工具启动
org.apache.shenyu.admin.ShenyuAdminBootstrap
,访问 http://localhost:9095 , 默认用户名和密码分别为:admin
和123456
。如果使用
h2
来存储,设置变量--spring.profiles.active = h2
如果使用
MySQL
来存储,修改application.yaml
中的mysql
配置。
使用开发工具启动
org.apache.shenyu.bootstrap.ShenyuBootstrapApplication
。