コンバーターのセクションを読みました
http://directwebremoting.org/dwr/documentation/server/configuration/dwrxml/converters/bean.html
しかし、私は正確な解決策を見つけることができません。
このように豆を管理できますか
public class User(){
public int id;
public String name;
public List<Car> cars;
public Bag aBag;
}
public class Car {
int rgbcolor;
String model;
}
public class Bag {
int price;
String brand;
}
Beanに他のオブジェクトタイプとしてフィールドが含まれている場合、どうすればよいですか、値を手動で入力する必要がありますか?または、カスタムまたは標準のコンバーターを使用して、これらのBeanを管理することは可能ですか?
ありがとう