如何以編程方式向前從一個控制器的一個方法到另一個方法3.0如何使用Spring MVC的編程着一個控制器到另一個在Spring MVC 3.0
@RequestMapping(value = "getData", method = RequestMethod.POST)
public void getData(@RequestBody LazyTreeGridInput lazyTreeGridInput,
HttpServletResponse response){
if(someCondition){
//forward to getParents
}else{
//forward to children
}
}
你說的 「前進」 的意思。有一種方法調用另一個?或者讓servlet返回一個HTTP轉發? – Raedwald