Browse Source

最新版Spring boot + Vue3 + Spring Security 6 项目模板

win
adiao 3 years ago
parent
commit
277ee862e2
  1. 1
      .gitignore
  2. 4
      app-service/src/main/java/com/depsystem/app/systemServer/securityServer/AuthenticationServerImpl.java

1
.gitignore vendored

@ -25,6 +25,7 @@ dist-ssr @@ -25,6 +25,7 @@ dist-ssr
*.sw?
=======
HELP.md
WebVue/
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/

4
app-service/src/main/java/com/depsystem/app/systemServer/securityServer/AuthenticationServerImpl.java

@ -60,7 +60,7 @@ public class AuthenticationServerImpl implements UserDetailsService { @@ -60,7 +60,7 @@ public class AuthenticationServerImpl implements UserDetailsService {
paths.add(pair.trim());
}
return new MyUserDetails(loginVO,roles,,paths);
return new MyUserDetails();
}
private void checkPermission(String token){
@ -77,7 +77,7 @@ public class AuthenticationServerImpl implements UserDetailsService { @@ -77,7 +77,7 @@ public class AuthenticationServerImpl implements UserDetailsService {
private String getPermission(String name){
return null;
}

Loading…
Cancel
Save