屏蔽Full authentication is required to access this resource

springboot环境下,用postman调试接口,一直正常,今天突然出现以下错误:

{
  "timestamp": "2018-03-05 14:43:45",
  "status": 401,
  "error": "Unauthorized",
  "message": "Full authentication is required to access this resource",
  "path": "/apptplatform/login"

}

上网搜一下解决方法,有人提出在配置中添加以下配置:

#忽略权限拦截
management:
  security:
    enabled: false

并导入以下maven依赖(项目此前并没有此依赖)

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

很可惜,问题依然存在。

由于项目的参与人员不多,问了下大家,有人添加了springboot的cloud依赖:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-oauth2</artifactId>
</dependency>
最后解决方法,如下图配置

security:
  basic:
    enabled: false

可以关闭springboot的安全验证。

此功能只是在配置上关闭安全验证,项目以后还是要打开此验证的。


查了下maven,oauth2这个包,本身依赖了security的包
















版权声明:本文为dl348原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。