두 손끝의 창조자

mybatis mapper id로 result type 가져오기 본문

myBatis

mybatis mapper id로 result type 가져오기

codinglog 2022. 7. 4. 15:28
MappedStatement mappedStatement = sqlSession.getConfiguration().getMappedStatement(s);
List<ResultMap> resultMaps = mappedStatement.getResultMaps();
ResultMap resultMap = resultMaps.get(0);
Class<?> type = resultMap.getType();
반응형
Comments