Java 對象關系映射 OMapper

jopen 13年前發布 | 9K 次閱讀 Java

OMapper 提供了一個簡單的庫用來簡化對象/Bean 與其他設計層面的映射,使用 Java 的注解。

示例代碼:

/**
 * 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/

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!