提交 54c4a603 编写于 作者: S smallchill

🎉 优化登录逻辑

上级 312fe508
......@@ -58,7 +58,7 @@ public class AuthController {
ITokenGranter granter = TokenGranterBuilder.getGranter(grantType);
UserInfo userInfo = granter.grant(tokenParameter);
if (userInfo == null || userInfo.getUser() == null) {
if (userInfo == null || userInfo.getUser() == null || userInfo.getUser().getId() == null) {
return R.fail(TokenUtil.USER_NOT_FOUND);
}
......
......@@ -29,7 +29,8 @@ import org.springframework.web.bind.annotation.RequestParam;
* @author Chill
*/
@FeignClient(
value = AppConstant.APPLICATION_USER_NAME
value = AppConstant.APPLICATION_USER_NAME,
fallback = IUserClientFallback.class
)
public interface IUserClient {
......
/**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com).
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springblade.system.user.feign;
import org.springblade.core.tool.api.R;
import org.springblade.system.user.entity.UserInfo;
import org.springframework.stereotype.Component;
/**
* Feign失败配置
*
* @author Chill
*/
@Component
public class IUserClientFallback implements IUserClient {
@Override
public R<UserInfo> userInfo(Long userId) {
return R.fail("未获取到账号信息");
}
@Override
public R<UserInfo> userInfo(String tenantCode, String account, String password) {
return R.fail("未获取到账号信息");
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册