|
@@ -2,6 +2,7 @@ package com.tofly.common.oauth.compent;
|
|
|
|
|
|
import com.tofly.common.core.constant.SecurityConstants;
|
|
|
import com.tofly.common.oauth.auth.ToflyUser;
|
|
|
+import com.tofly.common.oauth.exception.ToflyAuth2Exception;
|
|
|
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
|
|
import org.springframework.security.core.Authentication;
|
|
|
import org.springframework.security.core.GrantedAuthority;
|
|
@@ -56,7 +57,7 @@ public class ToFlyUserAuthenticationConverter implements UserAuthenticationConve
|
|
|
, true, true, true, authorities);
|
|
|
return new UsernamePasswordAuthenticationToken(user, N_A, authorities);
|
|
|
}
|
|
|
- return null;
|
|
|
+ throw new ToflyAuth2Exception("参数非法");
|
|
|
}
|
|
|
|
|
|
private Collection<? extends GrantedAuthority> getAuthorities(Map<String, ?> map) {
|