我的Spring / Hibernate应用程序中有一个模型类层次结构。
在向Spring MVC控制器提交POST表单时,是否有任何标准方法来指定所提交对象的类型,因此Spring可以实例化接收方法的@ModelAttribute或@RequestParam中声明的类型的正确子类?
例如:
public abstract class Product {...}
public class Album extends Product {...}
public class Single extends Product {...}
//Meanwhile, in the controller...
@RequestMapping("/submit.html")
public ModelAndView addProduct(@ModelAttribute("product") @Valid Product product, BindingResult bindingResult, Model model)
{
...//Do stuff, and get either an Album or Single
}
Jackson可以使用@JsonTypeInfo注释将JSON反序列化为特定的子类型。我希望Spring能做同样的事情。
答案 0 :(得分:7)
杰克逊可以使用。将JSON反序列化为特定的子类型 @JsonTypeInfo注释。我希望Spring能做同样的事情。
假设您使用Jackson进行类型转换(如果Spring在类路径中找到它并且您的XML中有<mvc:annotation-driven/>
,则会自动使用Jackson),那么它与Spring无关。注释类型,Jackson将实例化正确的类。不过,您必须在Spring MVC控制器方法中进行instanceof
检查。
评论后更新:
看看15.3.2.12 Customizing WebDataBinder initialization。您可以使用@InitBinder
方法根据请求参数注册编辑器:
@InitBinder
public void initBinder(WebDataBinder binder, HttpServletRequest request) {
String productType = request.getParam("type");
PropertyEditor productEditor;
if("album".equalsIgnoreCase(productType)) {
productEditor = new AlbumEditor();
} else if("album".equalsIgnoreCase(productType))
productEditor = new SingleEditor();
} else {
throw SomeNastyException();
}
binder.registerCustomEditor(Product.class, productEditor);
}