gpt4 book ai didi

spring - 在 yaml 中将 debug 设置为 true 而不是 @EnableWebSecurity(debug = true)

转载 作者:行者123 更新时间:2023-11-30 23:55:57 26 4
gpt4 key购买 nike

我没有使用 Spring Boot,但我希望能够使用 YAML 打开/关闭调试,例如:

debug: true

代替:

@EnableWebSecurity(debug = true)

最佳答案

您可以使用 WebSecurityConfigurerAdapterWebSecurity#debug 来做到这一点.

@Value("${isDebugEnable}")
private Boolean isDebugEnable;

public void configure(WebSecurity web) throws Exception {
web
.debug(isDebugEnable)
. //...
}

关于spring - 在 yaml 中将 debug 设置为 true 而不是 @EnableWebSecurity(debug = true),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43443220/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com