Browse Source

auth版本号+1:getresiwxphone

dev
yinzuomei 5 years ago
parent
commit
af5f1d0d63
  1. 2
      epmet-auth/deploy/docker-compose-dev.yml
  2. 2
      epmet-auth/pom.xml
  3. 4
      epmet-auth/src/main/java/com/epmet/service/impl/LoginServiceImpl.java

2
epmet-auth/deploy/docker-compose-dev.yml

@ -2,7 +2,7 @@ version: "3.7"
services: services:
epmet-auth-server: epmet-auth-server:
container_name: epmet-auth-server-dev container_name: epmet-auth-server-dev
image: 192.168.1.130:10080/epmet-cloud-dev/epmet-auth:0.3.33 image: 192.168.1.130:10080/epmet-cloud-dev/epmet-auth:0.3.34
ports: ports:
- "8081:8081" - "8081:8081"
network_mode: host # 使用现有网络 network_mode: host # 使用现有网络

2
epmet-auth/pom.xml

@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<version>0.3.33</version> <version>0.3.34</version>
<parent> <parent>
<groupId>com.epmet</groupId> <groupId>com.epmet</groupId>
<artifactId>epmet-cloud</artifactId> <artifactId>epmet-cloud</artifactId>

4
epmet-auth/src/main/java/com/epmet/service/impl/LoginServiceImpl.java

@ -147,10 +147,10 @@ public class LoginServiceImpl implements LoginService {
} }
} catch (WxErrorException e) { } catch (WxErrorException e) {
e.printStackTrace(); e.printStackTrace();
log.error(String.format("获取用户微信绑定的手机号接口异常",e)); log.error(String.format("获取用户微信绑定的手机号接口异常%s",e.getMessage()));
} catch(Exception e){ } catch(Exception e){
e.printStackTrace(); e.printStackTrace();
log.error(String.format("获取用户微信绑定的手机号接口异常",e)); log.error(String.format("获取用户微信绑定的手机号接口异常%s",e.getMessage()));
} }
return phone; return phone;
} }

Loading…
Cancel
Save