Mybatis中resultMap标签实现多表查询(多个对象)

1 n+1

1 在teacher中添加List student,

public class Teacher {
	private int id;
	private String name;
	private List list;

2 在studentMapper.xml中添加通过tid查询

	

3 在TeacherMapper.xml中添加查询全部

		
		
		
		
	
	

其中collection是当属性为集合类型时使用的标签

2 多表联合


		
		
		
			
			
			
			
			
			
	
	
	

你可能感兴趣的:(mybatis)