mirror of
https://github.com/chillzhuang/SpringBlade.git
synced 2024-11-21 18:09:25 +08:00
🎉 优化登录逻辑
This commit is contained in:
parent
447c3d5515
commit
de204e7744
@ -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 {
|
||||
|
||||
|
@ -0,0 +1,39 @@
|
||||
/**
|
||||
* 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("未获取到账号信息");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user