我们在写 mybatis多表关联查询的时候 ,要配置 resultmap ,实在太麻烦。而这个超级父类 可以省去我们查询多表时的map
- public class SuperPojo extends TreeMap<String, Object> implements Serializable {
-
-
- /**
- *
- */
- private static final long serialVersionUID = 1L;
-
-
- public SuperPojo setProperty(String key , Object value){
-
- this.put(key, value);
-
- return this ;
- }
-
-
- }
我们在只需要在 多表查询的时候 制定 type 为 这个SuperPojo 就可以 , mybatis 会 自动将我们 数据库中多表查询 的数据 以 数据库字段 为 key 值 。数据库字段 对应的 值 为 value 装入 这个类中
如果我们页面要用这些数据 ,则直接 ${SuperPojo.数据库字段} 就可以。
原文地址:https://blog.csdn.net/superPojo/article/details/72777911