在MyBatis中,可以通過@Column注解在實體類中實現列的別名映射。首先,在實體類中添加@Column注解,并指定別名,例如:
public class User {
@Column(name = "user_name")
private String name;
// other fields and methods
}
然后,在MyBatis的映射文件中,使用resultMap標簽來指定列與字段的映射關系,如下所示:
<resultMap id="UserResultMap" type="User">
<result property="name" column="user_name"/>
<!-- other mappings -->
</resultMap>
這樣,就實現了列的別名映射,在查詢結果中可以使用別名來訪問對應的字段值。