You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// User.java
public class User {
private String id;
private String name;
private Integer age;
private Map<String, Object> ext = new HashMap<>();
private Role role;
}
// Role.java
public class Role {
private String name;
}
// xml
<select id="select" resultType="x.y.User">
select *,
'role_admin' as `role.name`,
'hello1' as `ext.hello1`,
'hello2' as `ext.hello2`
from user;
</select>