我试图将表单数据从JSP提交到控制器,并使数据绑定到基于表单中“类型”字段的抽象类的两种实现之一。我看到这篇帖子听起来很有希望,但是在创建并注册了转换器之后,它并没有被称为:@ModelAttribute and abstract class
我想念什么?接线对我来说似乎是正确的,但这也是我第一次尝试进行配置。
提交表单数据时,控制器会引发以下异常:org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.project.types.Food]: Is it an abstract class?
这是抽象的类结构:
abstract Food
String type
Banana extends Food
Apple extends Food
这是我的控制人:
@RequestMapping(value = "/web/pickFood", method = RequestMethod.POST)
public ModelAndView foodSubmit(@ModelAttribute("food") Food food) {...}
我的转换器:
public class FoodConverter implements Converter<String, Food> {
@Override
public Food convert(String type) {
Food food = null;
switch (type) {
case "banana":
food = new Banana();
break;
case "apple":
food = new Apple();
break;
default:
throw new IllegalArgumentException("Unknown food type:" + type);
}
return food;
}
}
我如何注册转换器:
@Configuration
@EnableWebMvc
public class FoodWebMvCContext extends WebMvcConfigurerAdapter {
@Override
public void addFormatters(FormatterRegistry registry) {
registry.addConverter(new FoodConverter());
}
}
还有我的JSP上的表单,现在我只想提交类型,然后将其转换为该类型的空食物对象。
<form:form method="POST"
action="/web/pickFood"
modelAttribute="food">
<table>
<tr>
<td><form:label path="type">Type</form:label></td>
<td><form:input path="type" name="food"/></td>
</tr>
</table>
</form:form>
答案 0 :(得分:0)
我可以通过更改
的表单输入来修复它<tr>
<td><form:label path="type">Type</form:label></td>
<td><form:input path="type" name="food"/></td>
</tr>
到
<tr>
<input type="text" name="food" />
</tr>