当前位置:   article > 正文

postman发送请求到本地,状态401Unauthorized,控制台没有打印任何东西_postman报401 un

postman报401 un

原因:spring security在引入actuator后安全校验配置.不配置其他接口就会报401

  1. @EnableWebSecurity
  2. @Configuration(proxyBeanMethods = false)
  3. public class ActuatorSecurityConfiguration extends WebSecurityConfigurerAdapter {
  4. /**
  5. * http验证配置.
  6. *
  7. * @param http
  8. * @throws Exception
  9. */
  10. @Override
  11. protected void configure(HttpSecurity http) throws Exception {
  12. http.requestMatcher(EndpointRequest.toAnyEndpoint())
  13. // 放开所有验证
  14. .authorizeRequests((requests) -> requests.anyRequest().permitAll());
  15. }
  16. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/684506
推荐阅读
相关标签
  

闽ICP备14008679号