You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
1、网关
|
|
|
|
|
gw-charge 【小程序网关】
|
|
|
|
|
D:\dsWork\YltProject\Ylt\gw-charge\src\main\java\com\i100c\charge\gw\GwApplication.java
|
|
|
|
|
|
|
|
|
|
在pom.xml中引用了
|
|
|
|
|
<!--zuul 网关-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-zuul</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
访问与返回:
|
|
|
|
|
http://127.0.0.1:7001/
|
|
|
|
|
Hello, gw-charge
|
|
|
|
|
|
|
|
|
|
zuul:
|
|
|
|
|
#路径配置
|
|
|
|
|
routes:
|
|
|
|
|
|
|
|
|
|
# (1) 用户模块
|
|
|
|
|
userapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /userapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
# (2) 财务模块
|
|
|
|
|
financeapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /financeapi/**
|
|
|
|
|
|
|
|
|
|
# (3) 充电站模块
|
|
|
|
|
stationapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /stationapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(4) 订单模块
|
|
|
|
|
orderapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /orderapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(5) 互联互通模块
|
|
|
|
|
openapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /openapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(6) 订单后台模块
|
|
|
|
|
orderbkapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /orderbkapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(7) 协议模块
|
|
|
|
|
protocolapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /protocolapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(8) 分发模块
|
|
|
|
|
distribute:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /distribute/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(9) 通知模块
|
|
|
|
|
noticeapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /noticeapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
#(10) 通知模块
|
|
|
|
|
cheweiapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /cheweiapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2、gw-saas-mgr 【后台管理网关】
|
|
|
|
|
D:\dsWork\YltProject\Ylt\gw-saas-mgr\src\main\java\com\charge\gwmgr\SaasGwMgrApplication.java
|
|
|
|
|
|
|
|
|
|
访问与返回:
|
|
|
|
|
http://127.0.0.1:7003/
|
|
|
|
|
Hello, gw-saas-mgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#新管理模块
|
|
|
|
|
mgrApi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /mgrApi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#充电用户管理模块
|
|
|
|
|
userapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /userapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#saas运营商管理模块
|
|
|
|
|
operatorapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /operatorapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#财务管理模块
|
|
|
|
|
financeapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /financeapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#运营商账户模块
|
|
|
|
|
operatorBill:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /operatorBill/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#数据分析(充值)模块
|
|
|
|
|
recManager:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /recManager/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#订单管理模块
|
|
|
|
|
orderapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /orderapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#订单后台模块
|
|
|
|
|
orderbkapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /orderbkapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#导出模块
|
|
|
|
|
exportapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /exportapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#充电站活动管理模块
|
|
|
|
|
stationActivity:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /stationActivity/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#旧充电站活动管理模块
|
|
|
|
|
oldStationActivity:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /oldStationActivity/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#活动通知管理模块
|
|
|
|
|
activityNotice:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /activityNotice/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#代理商管理模块
|
|
|
|
|
agent:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /agent/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#充电站管理模块
|
|
|
|
|
station:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /station/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#充电桩管理模块
|
|
|
|
|
equipment:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /equipment/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#充电枪管理模块
|
|
|
|
|
connector:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /connector/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#saas充电站管理模块
|
|
|
|
|
saasstation:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /saasstation/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#saas充电桩管理模块
|
|
|
|
|
saasequipment:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /saasequipment/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#saas充电枪管理模块
|
|
|
|
|
saasconnector:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /saasconnector/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#企业管理模块
|
|
|
|
|
company:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /company/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#运营商管理模块
|
|
|
|
|
operator:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /operator/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#旧运营商管理模块
|
|
|
|
|
platform:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /platform/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#监控中心管理模块
|
|
|
|
|
monitoring:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /monitoring/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#计费规则模块
|
|
|
|
|
equipmentPricingRule:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /equipmentPricingRule/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#region(查询省市)模块
|
|
|
|
|
region:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /region/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#协议模块
|
|
|
|
|
protocolapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /protocolapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#首页桩待办模块(建雄)
|
|
|
|
|
distribute:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /distribute/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
saas:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /saas/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#外接监控接口
|
|
|
|
|
# openapi:
|
|
|
|
|
# stripPrefix: false
|
|
|
|
|
# path: /openapi/**
|
|
|
|
|
# sensitiveHeaders:
|
|
|
|
|
# api:
|
|
|
|
|
# stripPrefix: false
|
|
|
|
|
# path: /api/**
|
|
|
|
|
# sensitiveHeaders:
|
|
|
|
|
#测试模块
|
|
|
|
|
testapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /testapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#手机助手
|
|
|
|
|
mobileapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /mobileapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#第三方设备
|
|
|
|
|
deviceapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /deviceapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#监控平台(G端)
|
|
|
|
|
monitorapi:
|
|
|
|
|
stripPrefix: false
|
|
|
|
|
path: /monitor/api/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
#互联互通模块
|
|
|
|
|
openapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /openapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
|
|
|
|
|
mongodb 这个项目似乎在使用mongodb
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
3、gw-openapi 【互联互通网关】
|
|
|
|
|
D:\dsWork\YltProject\Ylt\gw-openapi\src\main\java\com\charge\gwopenapi\GwOpenAPIApplication.java
|
|
|
|
|
访问与返回:
|
|
|
|
|
http://127.0.0.1:7002/
|
|
|
|
|
Hello,gw-openapi
|
|
|
|
|
|
|
|
|
|
#开放平台
|
|
|
|
|
openapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /openapi/**
|
|
|
|
|
sensitiveHeaders:
|
|
|
|
|
monitorapi:
|
|
|
|
|
stripPrefix: true
|
|
|
|
|
path: /monitorapi/**
|
|
|
|
|
sensitiveHeaders:
|