Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Mapeamento MyBatis para buscar a lista de tipos de registro personalizados no Oracle


Altere o mapeador da seguinte forma
<resultMap type="detail" id="myResultMap"  >
        <result property="objectNamee" column="P_OBJECT_NAME" />
        <result property="objectStatus" column="p_object_status" />
</resultMap>

<select id="getLearnerMap" parameterType="spInOut" statementType="CALLABLE">

 {call p1.data_collection_append(#{objList, jdbcType=CURSOR, mode=OUT, resultMap=myResultMap, javaType=java.sql.ResultSet})}

</select>

crie um tipo no SpInOut no diretório do seu domínio
public class SpInOut {

    private Object objList;
   //getter setting follows
}

Aqui está um exemplo simples completo

lado do banco de dados


Criar tipo personalizado
PACKAGE KP_EMP_PCK AS

  type empType is ref cursor;

END KP_EMP_PCK;

Criar um procedimento armazenado
create or replace PROCEDURE KPLISTEMP
( empList OUT kp_emp_pck.empType
) AS
BEGIN
  open empList for select empid, fname, lname,address from kpemployee order by fname;
END KPLISTEMP;

Lado Java

Criar classe de domínio
public class User {

    private String fName;
    private String company;
    private int age;
    private int salary;
    //getter Setter

}

Criar domínio para SpInOut
public class SpInOut {

        private Object empList;
       //getter setting follows
    }

Interface do mapeador
public interface EmployeeMapper {

    void getEmployees(SpInOut param);

}

Arquivo xml do mapeador
<mapper namespace="com.kp.swasthik.db.oracle.persistence.EmployeeMapper">

    <resultMap type="employee" id="empResultMap"  >
        <id property="empId" column="EMPID" />
        <result property="fName" column="FNAME" />
        <result property="lName" column="LNAME" />
        <result property="address" column="ADDRESS"  />
    </resultMap>

    <select id="getEmployees"  statementType="CALLABLE" parameterType="spInOut" >
        {call kplistemp(#{empList, jdbcType=CURSOR, mode=OUT, resultMap=empResultMap, javaType=java.sql.ResultSet})}
    </select>
</mapper>

E finalmente a classe de serviço
public class EmployeeServiceImpl implements EmployeeService {

    @Autowired
    EmployeeMapper mapper;

    @Override
    public List<Employee> getEmps() {
        try{
            SpInOut data= new SpInOut();
            mapper.getEmployees(data);
            return (List<Employee>) data.getEmpList();
        }catch(Exception e){
            e.printStackTrace();
        }
        return null;
    }

}