如何在spring mvc jsp視圖中將子類對象綁定到表單上?綁定子類對象到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
有你把'group'模型屬性或請求屬性? –
模型屬性 –
你對「動物」字段有吸氣嗎? –