Snailclimb / spring-security-jwt-guide

从零入门 !Spring Security With JWT(含权限验证)后端部分代码。
1.37k stars 438 forks source link

登录URL的问题 #18

Closed SouthESTSoul closed 4 years ago

SouthESTSoul commented 4 years ago

为什么登录是localhost:9333/api/auth/login而不是localhost:9333/auth/login? 在SecurityConfig 中的代码是这样的 .antMatchers(HttpMethod.POST, "/auth/login").permitAll() // 指定路径下的资源需要验证了的用户才能访问 .antMatchers("/api/**").authenticated() 为什么前面还需要加/api?求解惑。

SouthESTSoul commented 4 years ago

。。在.properties文件里看到。设置了 server.servlet.context-path=/api/