gpt4 book ai didi

spring - Spring boot 拦截器中的应用程序属性值

转载 作者:行者123 更新时间:2023-12-04 11:56:13 25 4
gpt4 key购买 nike

任何人都可以帮我读取 Spring Boot 拦截器(preHandle 方法)中的应用程序属性值吗?

我想在 preHandle 中写一些逻辑.这个逻辑需要从 application.properties 获取一些值文件。我用 @Value注释但它始终为空。

谢谢

最佳答案

我会建议以下解决方案

   @Configuration
public class XYZWebappWebConfig extends WebMvcConfigurerAdapter{



@Autowired
private XYZCustomWebappInterceptor xyzCustomWebappInterceptor;

@Override
public void addInterceptors(InterceptorRegistry registry){

registry.addInterceptor(xyzCustomWebappInterceptor).addPathPatterns("/**");
}

}

在实际类(class)中,您将执行以下操作
// Custom interceptor class
@Component
public class XYZCustomInterceptor implements HandlerInterceptor{
@Value("${JWT.secret}")
private String jwtSecret;

@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse
response, Object arg2) throws Exception {
//use the secret key
}
}

关于spring - Spring boot 拦截器中的应用程序属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43591582/

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