gpt4 book ai didi

java - 注释拦截器中 HandlerMethod 的问题

转载 作者:行者123 更新时间:2023-12-01 14:30:57 24 4
gpt4 key购买 nike

public class AnnotationInterceptor extends HandlerInterceptorAdapter implements InitializingBean {
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
HandlerMethod method = (HandlerMethod) handler;
Api methodAnnotation = method.getMethodAnnotation(Api.class);

if (methodAnnotation != null) {
//..
}
}
}

给我:“HandlerMethod 无法解析为类型”

无法找到任何关于原因的阅读。

最佳答案

添加以下导入:

import org.springframework.web.method.HandlerMethod;

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

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