我使用Sping Boot 3.0,当我进行安全配置时,我收到@EnableGlobalMethodSecurity
已过时的警告。
@Configuration
@EnableWebSecurity
@AllArgsConstructor
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig {
在Sping Boot 3.0中,我可以用什么来替换@EnableGlobalMethodSecurity
?
1条答案
按热度按时间9gm1akwq1#
您现在可以使用:
检查documentation
请注意,您可以避免使用
prePostEnabled = true
,因为默认情况下为true
。