文章列表
对于复杂结构的beans,是否能够仅使用一个完整的.betwixt模版文件,而不是多个呢?
例如,对于如下的bean:
public class Person{
public String getName(){}
public void setName(String name){}
public Pocket getPocket(){}
public void setPocket(Pocket pock){}
}
public class Pocket{
public int getO ...
在使用betwixt根据Bean生成xml文件时,Betwixt默认识别的xml模版文件是以bean的名称为主文件名的".betwixt"文件。
比如:
person.class
person.betwixt
如果我希望能够重新指定其他文件作为模版文件的话,该如何操作呢?
比如我希望使用hello.betwixt作为person.class的模板文件,
BeanWriter提供了如下方法:
public void write(Object bean, InputSource source)
InputSource ins = new In ...