我有实现拦截器中控制器的方法和拦截器中方法返回的对象的需求。
为什么?
因为我想声明将使用方法上注释的注释返回给客户端的数据类型。例如 :
@Controller
@Scope("prototype")
@RequestMapping("/hello/")
public class HelloWorld {
@ResponseType(DataType.JSON)
@RequestMapping(value="/{username}")
public UserInfo hellowUser(@PathVariable("username") String username) {
UserInfo userInfo = new UserInfo();
userInfo.setUsername(username);
return userInfo.
}
}
然后拦截器:
public void postHandle(HttpServletRequest request,
HttpServletResponse response, Object handler,
ModelAndView modelAndView) throw Exception {
Method method = getRequestedMethod();
Object result = getResultReturnedByTheMethod();
ResponseType responseType = method.getAnnotation(ResponseType.class);
DataType type = responseType.value();
swich(type) {
case DataType.JSON : writeJson(result);
case .......
...
}
}
那么,换句话说,如何正确实现“getRequestedMethod”和“getResultReturnedByTheMethod”?