mybatis深入学习

1、select
id:必填,不可重复–和mapper对应
resultMap:select查询语句返回的类型和映射关系
resultType:
parameterType:

select可以有两种结果映射方式:
一、以resultMap返回结果映射,resultMap中配置property和column完成映射。
例子:


	    
		...



二、以resultType返回结果映射:需要设置别名,达到与Javabean中字段一致,从而完成映射。如果是Map类型就无所谓。


	select u.id ,r.id role.id from sys_user u inner join sys_user_role ur on u.id = ur.user_id
	inner join sys_role r on r.id = ur.role_id
  

1.2:使用resultMap配置一对一映射


    
    
    ...
    
    
    ...



1.3:使用resultMap的association标签配置一对一映射:


	
		
		...
	

你可能感兴趣的:(Mybatis)