mybatis返回一个 list 实体对象集合

首先xml文件里配置一个resultMap,并把type配置成你要返回的对象类型,然后再写一个select ,把这个查询的resultMap写成你前面写的那个resultMap的id即可,详情看图。

1.xml里面配置一个resultMap。其中column是你数据库的字段,property是你bean里面对应的字段

        
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	  

2.查询的时候调用,这里的resultMap就是前面那个配置好的resultMap的id,

   

    到这里就可以愉快的返回List

你可能感兴趣的:(mybatis,list,bean,mybatis)