在进行springboot项目开发的时候往往需要用到springSecurity
但是在开发阶段我们往往会遇到Security的权限拦截问题
以前用的方法常常是将ip加入白名单的方法 但是其实也有直接关闭security的方法:
直接在Springboot的主启动类增加以下配置
@SpringBootApplication(exclude= {SecurityAutoConfiguration.class })
并且注释掉security相关信息:文章来源:https://www.toymoban.com/news/detail-653276.html
// @PreAuthorize("@ss.hasPermi('develop10:bingyi1:query')")
@GetMapping(value = "/{bingyiInfoId}")
public AjaxResult getInfo(@PathVariable("bingyiInfoId") String bingyiInfoId)
{
return AjaxResult.success(bingYiInfoService.selectBingYiInfoByBingyiInfoId(bingyiInfoId));
}
此时, 则可以正常调用接口了~文章来源地址https://www.toymoban.com/news/detail-653276.html
到了这里,关于SpringBoot如何关闭Spring Security的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!