Mybatis定义别名typeAliases

定义别名可以在SqlMapConfig.xml中定义,也可以使用注解

使用SqlMapConfig.xml方法定别名


    
    
    
    
    
    



    
        
    

使用注解方式定义别名

@Alias("author")
public class Author {
...
}


你可能感兴趣的:(MyBatis)