Commit 775a0da34a0d0e4c4f510b000ac18799d2d5d13c
1 parent
a04fea10
配置文件端口改为82
Showing
2 changed files
with
4 additions
and
4 deletions
src/main/java/com/cnlive/shenhe/ShenheApplication.java
| ... | ... | @@ -23,13 +23,13 @@ public class ShenheApplication extends SpringBootServletInitializer { |
| 23 | 23 | private static final String CAS_SERVER_URL_PREFIX = "https://user.cnlive.com/OpenSSO2"; |
| 24 | 24 | private static final String CAS_SERVER_LOGIN_URL = "https://user.cnlive.com/OpenSSO2/login"; |
| 25 | 25 | //本机的名称 |
| 26 | - private static final String SERVER_NAME = "http://test.shen.cnlive.com"; | |
| 26 | + private static final String SERVER_NAME = "http://test.shen.cnlive.com:82"; | |
| 27 | 27 | |
| 28 | 28 | //登录入口 |
| 29 | - private static final String SERVICE_LOGIN = "http://test.shen.cnlive.com/users/login"; | |
| 29 | + private static final String SERVICE_LOGIN = "http://test.shen.cnlive.com:82/users/login"; | |
| 30 | 30 | |
| 31 | 31 | //登出 |
| 32 | - private static final String SERVICE_LOGINOUT = "http://test.shen.cnlive.com/users/logout"; | |
| 32 | + private static final String SERVICE_LOGINOUT = "http://test.shen.cnlive.com:82/users/logout"; | |
| 33 | 33 | |
| 34 | 34 | |
| 35 | 35 | /** | ... | ... |
src/main/resources/application.properties
| ... | ... | @@ -34,7 +34,7 @@ spring.thymeleaf.cache=false |
| 34 | 34 | |
| 35 | 35 | mybatis.mapper-locations=classpath:mapping/*.xml |
| 36 | 36 | mybatis.type-aliases-package=com.cnlive.shenhe.entity |
| 37 | -server.port=80 | |
| 37 | +server.port=82 | |
| 38 | 38 | |
| 39 | 39 | sync_users_api=http://api.cnlive.com/open/api2/inner2/shenhe/getuser |
| 40 | 40 | sync_users_app_key=314a9dd4-a9b7-4c12-bbbe-1150a36491ae | ... | ... |