接口 ILoginClient

  • 所有已知实现类:
    ILoginClientFallback

    @FeignClient(name="meteor-system-service",
                 contextId="loginClient",
                 path="/user",
                 fallback=ILoginClientFallback.class)
    public interface ILoginClient
    登录相关
    从以下版本开始:
    1.0.0
    作者:
    ths
    • 方法详细资料

      • userInfoByToken

        @GetMapping(value="userInfoByToken",
                    produces="application/json")
        R<UserInfo> userInfoByToken​(@RequestParam("token")
                                    String token)
        根据token获取用户信息
        参数:
        token - token
        返回:
        用户信息