gpt4 book ai didi

java - Spring WebMVC 5 - 基于注释的拦截器

转载 作者:行者123 更新时间:2023-12-02 10:57:22 27 4
gpt4 key购买 nike

如何仅通过注释来配置拦截器(我不喜欢在 .XML 文件中注册拦截器,我不使用基于 .XML 的配置)?

注意:我在互联网上的示例中看到建议使用org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter,当我尝试使用它时,我发现了它已弃用

我正在使用 SpringBoot-2 在 SpringWebMVC-5 上进行测试

最佳答案

在Spring5中,您可以使用org.springframework.web.servlet.config.annotation.WebMvcConfigurer:

@EnableWebMvc
@Configuration
public class WebConfig implements WebMvcConfigurer {

@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(....);
}
}

关于java - Spring WebMVC 5 - 基于注释的拦截器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51624009/

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