如何将子类对象绑定到spring mvc jsp视图中的表单?
例子 :
public class Group
{
public List<Animal> animals;
//other propertys
}
abstract class Animal
{
String name;
}
class lion extends animal
{
String legs;
}
如何将 Group 对象绑定到 jsp 视图?
如果不能使用它 <c:forEach items="${group.animals}" var="animal">
,因为它会给我一个异常。
我收到的例外是
Could not instantiate property type [Animal] to auto-grow nested property path: java.lang.InstantiationException