1
私はこのようなJava Beanを定義していますMyBatisのカスタムマッピング
public class Person{
private int id;
private String name;
private Map<String, Object> properties;
// getters and setters ...
}
は、次のクエリ与える:
select id, name, age, address from users;
を私はPersonクラスのに対して、 "ID" と "名前" 列をマップしたいです"id"と "name"プロパティではなく、 "age"と "address"カラムをキーと値のペアとして "properties"マップにマップします。
これはmybatisで可能ですか?私はmybatisの最新バージョンを使用しています。