OMapper 2.0 發布,Java 對象映射類庫

jopen 11年前發布 | 13K 次閱讀 OMapper

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;

}</pre>
發布說明:該版本修正了所有的主要和關鍵的錯誤,增加了指定源或目標類的映射的支持,并增加了支持基本數組和字符串數組。

項目地址: http://code.google.com/p/omapper/

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