springmvc如何实现⾃定义注解,如@RequestParam SpringMVC参数绑定的注解有很多,如@RequestParam,@RequestBody,@PathVariable,@RequestHeader,@CookieValue 等。这些注解的实现⽅式很类似,都是有⼀个对应的解析器,解析完返回⼀个对象,放在⽅法的参数上。对参数绑定注解不熟悉的看推荐阅读
如@RequestParam的解析器为RequestParamMethodArgumentResolver,@RequestBody的解析器为PathVariableMethodArgumentResolver等,这些解析器的原理超级简单。我先写⼀个⾃⼰的解析器,你⼤概就能猜到这些解析器的⼯作原理了。假如说现在有⼀个场景,前端每次从前⾯传⼊⼀个userId,⽽后端呢,每次都去查数据库,然后拿到⽤户的信息。如果有很多个controller,每个controller上来都是⼀样的逻辑,去查数据库,然后拿⽤户信息,这样的代码就很烂。如何精简呢?答案就是⾃定义注解实现参数绑定。
定义注解:
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface CurrentUser {
}
实现解析器
public class CurrentUserUserHandlerMethodArgumentResolver implements HandlerMethodArgumentResolver {
/** ⽤于判定是否需要处理该参数分解,返回true为需要,并会去调⽤下⾯的⽅法resolveArgument。*/
@Override
public boolean supportsParameter(MethodParameter parameter) {
ParameterType().isAssignableFrom(User.class) && parameter.hasParameterAnnotation(CurrentUser.class);
}
/** 真正⽤于处理参数分解的⽅法,返回的Object就是controller⽅法上的形参对象。*/
@Override
public Object resolveArgument(MethodParameter parameter, ModelAndViewContainer container,
NativeWebRequest request, WebDataBinderFactory factory) throws Exception {
String userId = Parameter("userId");
// 为了⽅便不模拟查数据库的过程,直接new⼀个username和password都是userId的对象
return new User(userId, userId);
}
}
加⼊配置
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Override
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> resolvers) {
resolvers.add(new CurrentUserUserHandlerMethodArgumentResolver());
}
}
测试
@RestController
public class UserController {
@RequestMapping(value = "userInfo", method = RequestMethod.GET) public Map<String, String> userInfo(@CurrentUser User user) {
Map<String, String> result = new HashMap<>();
result.put("username", Username());
result.put("password", Password());
return result;
}
springmvc的注解有哪些}
curl localhost:8080/userInfo?userId=1
返回结果:{"username":"1","password":"1"}
根据此简单例⼦可以做类似的annotion
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论