Browse Source

Merge branch 'master' of http://192.168.2.241:3000/linzhiwei/tofly-parent

linzhiwei 2 years ago
parent
commit
39af73bc59

+ 2 - 1
common-oauth/src/main/java/com/tofly/common/oauth/compent/ToFlyUserAuthenticationConverter.java

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