This commit is contained in:
liuchuntao 2022-06-13 19:13:25 +08:00
parent bb523b0025
commit 6fc2f09e28
3 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@
</parent>
<groupId>cn.axzo.framework</groupId>
<artifactId>axzo-auth-spring-boot-starter</artifactId>
<version>1.1.5</version>
<version>1.1.5-SNAPSHOT</version>
<name>axzo-auth-spring-boot-starter</name>
<description>axzo-auth-spring-boot-starter</description>

View File

@ -7,7 +7,7 @@ import lombok.Getter;
@AllArgsConstructor
public enum EnvEnum {
// dev
DEV("dev", "http://dev-app.axzo.cn/pudge/webApi/oauth/apisix/authentication"),
DEV("dev", "http://127.0.0.1:10099/webApi/oauth/apisix/authentication"),
// TEST
TEST("TEST", "http://test-api.axzo.cn/pudge/webApi/oauth/apisix/authentication"),
//TEST1

View File

@ -224,6 +224,7 @@ public class ContextInfoBuilderAspect {
}
public void buildUserInfo(ContextInfo contextInfo, String authResultJson) {
log.info("buildUserInfo-->authResultJson:{},contextInfo:{}",authResultJson,JSONUtil.toJsonStr(contextInfo));
UserInfo userInfo = new UserInfo();
TypeReference<Map<String, Object>> mapTypeReference = new TypeReference<Map<String, Object>>() {
};