Mybatis源码泛型解析器TypeParameterResolver

TypeParameterResolver是Mybatis的泛型参数解析器。
它的功能是什么?帮助Mybatis推断出属性、返回值、输入参数中泛型的具体类型。
它对外提供了三个方法:
resolveFieldType:解析属性的泛型;
resolveParamTypes:解析方法参数的泛型;
resolveReturnType:解析方法返回值的泛型。

示例:

package com.xncoding.pos.common.dao.entity;

import java.util.List;

public class Person<T1,T2,T3> {
    public T3 t3;
    public List<? extends T3> getInfo(T1 t1, T2 t2){
        return null;
    }
}

package com.xncoding.pos.common.dao.entity;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class Student extends Person<String,Map<String,Integer>,Integer> {

    @Override
    public List<Integer> getInfo(String s, Map<String, Integer> map) {
        return new ArrayList<>(super.t3);
    }
}

package com.xncoding.pos;

import com.xncoding.pos.common.dao.entity.Person;
import com.xncoding.pos.common.dao.entity.Student;
import org.apache.ibatis.reflection.TypeParameterResolver;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;

import java.lang.reflect.Type;

@SpringBootTest
public class TestTypeParameterResolver {

    @Test
    public void testReturnType() throws NoSuchMethodException {
        Type returnType = TypeParameterResolver.resolveReturnType(Person.class.getMethods()[0], Student.class);
        System.out.println("Student类中getInfo方法的返回值类型:"+returnType);
    }

    @Test
    public void testParamType() throws NoSuchMethodException{
        Type[] paramTypes = TypeParameterResolver.resolveParamTypes(Person.class.getMethods()[0], Student.class);
        for (Type paramType : paramTypes) {
            System.out.println("Student类中getInfo方法的各参数类型:"+paramType);
        }
    }

    @Test
    public void testFieldType()throws NoSuchFieldException{
        Type str = TypeParameterResolver.resolveFieldType(Person.class.getDeclaredField("t3"), Student.class);
        System.out.println("Student类中super.t4属性的类型:"+str);
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值