为什么6.3改造成jwt后到网关那里就拦截了报401,和课程代码写的一样的
来源:6-3 JWT改造之网关和服务改造
慕斯卡9039211
2019-09-28
1.这是网关
@Configuration
@EnableResourceServer
public class GatewaySecurityConfig extends ResourceServerConfigurerAdapter {
@Override
public void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/token/**").permitAll()
.anyRequest().authenticated();
}
}
2.auth-server按照课程改成jwt了,也能获取token
3.订单服务也按照课程改了,配置和接口
写回答
1回答
-
这个应该在群里聊过了,你的现象应该是配置没有生效,可能是环境的问题,请尝试clean项目再试。
112019-09-29
相似问题