如何在Spring中删除auth请求?

前端之家收集整理的这篇文章主要介绍了如何在Spring中删除auth请求?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

此消息说明:所需的授权.要在服务器http:// localhhost:8080上访问,您应该输入登录名和密码.服务器消息:Spring.

我正在使用Hibernate 4,Spring 4和Gradle.另外,我正在使用Spring Boot.但即使我从tutorial获得了平面代码,也会出现此消息.是什么导致它以及如何摆脱它?怎么了?控制台中没有错误消息.

最佳答案
在项目中搜索安全属性并进行设置

security.basic.enabled=false

http://docs.spring.io/spring-boot/docs/1.1.8.RELEASE/reference/htmlsingle/#howto-switch-off-spring-boot-security-configuration

检查上面链接中的66.1.

来自Doc:如果在应用程序的任何位置使用@EnableWebSecurity定义@Configuration,它将关闭Spring Boot中的默认Webapp安全设置

原文链接:https://www.f2er.com/spring/431871.html

猜你在找的Spring相关文章