🎉 优化登录逻辑

This commit is contained in:
smallchill 2019-07-16 14:01:14 +08:00
parent 447c3d5515
commit de204e7744
3 changed files with 42 additions and 2 deletions

View File

@ -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);
}

View File

@ -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 {

View File

@ -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("未获取到账号信息");
}
}