SSM之一点一滴:mybatis parameterType传入类型 resultType返回类型

一、parameterType参数传入类型

概述:

parameterType传入参数类型可以为int,String,Integer,Date,java实体类,map,下面的用法中采用的是parameterType="com.huawei.model.Person"  java实体类型

二、resultType数据返回类型

概述:

resultType数据返回类型可以为int,String,Integer,Date,java实体类,map,list下面的用法中采用的是resultType="com.huawei.model.Person"  java实体类型

 

三、用法

在dao接口

package com.huawei.dao;

import com.huawei.model.Person;

public interface PersonMapper {
    /**
     * 查询所有
     * @return
     */
    Person queryAll(Person person);
}

queryAll为mapping映射文件的id,唯一标识符

queryAll方法前面的Person为resultType数据返回类型,即在mapping中的resultType="com.huawei.model.Person"  java实体类型

queryAll方法参数中Person为parameterType参数传入类型,即在mapping中的parameterType="com.huawei.model.Person"  java实体类型

mapping映射基本配置解释如下





 



    






 


 


 
     
     
     
    
     
     
     
     
     
     
     
     
    

参考链接:https://www.cnblogs.com/dongying/p/4073259.html

具体深入请百度关键词

mybatis  parameterType

mybatis  resultType

你可能感兴趣的:(SSM之一点一滴)