OMapper 2.0 发布,Java 对象映射类库
jopen 11年前
OMapper提供一个简单的类库,通过Java注释来简化对象/Bean 与其他设计层面的映射。
/** * The Class Bean2. */ @Mappable public class Bean2 { /** The name. */ @Source(type = org.omapper.test.Bean1.class, property = "name") private String name; /** The address. */ @Source(type = Bean1.class, property = "address") private String address; /** The age. */ @Source(type = Bean1.class, property = "age") private int age; /** The emp_id. */ @Source(type = Bean1.class, property = "emp_id") private Integer emp_id; }
发布说明:该版本修正了所有的主要和关键的错误,增加了指定源或目标类的映射的支持,并增加了支持基本数组和字符串数组。
项目地址: http://code.google.com/p/omapper/