Browse Source

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

master
adiao 3 years ago
parent
commit
23b5df93c4
  1. 1
      .gitignore
  2. 4
      app-service/src/main/java/com/depsystem/app/systemServer/securityServer/AuthenticationServerImpl.java

1
.gitignore vendored

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
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