当前位置:   article > 正文

【无标题】_springboot 引入spring-boot-starter-security 取消接口认证

springboot 引入spring-boot-starter-security 取消接口认证

原因:

SpringBoot项目中只要引入了spring-boot-starter-security包,默认就已经开启了权限认证。

解决方案:

这么几种方式可以解决:

1.删除spring-security相关的pom引入,如下:

<dependency>
    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-ldap</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4
<dependency>
  	<groupId>org.springframework.security.oauth</groupId>
 	<artifactId>spring-security-oauth2</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4

2.通过在SpringBootApplication中添加exclude,禁用security

@SpringBootApplication(exclude = {SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class})

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

闽ICP备14008679号