feign.FeignException$Unauthorized: status 401 reading GmallSmsClient#saveSkuSaleInfo(SkuSaleVo)
错误原因没有访问saveSkuSaleInfo(SkuSaleVo)的权限使用了Security控制权限,访问时身份验证没有通过修改在被访问的微服务中添加SecurityConfig 配置@Configurationpublic class SecurityConfig extends WebSecurityConfigurerAdapter {@Override...
·
错误原因
没有访问saveSkuSaleInfo(SkuSaleVo)的权限
使用了Security控制权限,访问时身份验证没有通过
修改
在被访问的微服务中添加SecurityConfig 配置
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
//允许任何请求访问
//http.authorizeRequests().antMatchers("/**").permitAll();
//设置指定路径放行
http
.authorizeRequests()
.antMatchers("/index.html","login.html")
.permitAll();
// 禁用掉csrf
http.csrf().disable();
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)