반응형
IBatis를 MyBatis로 라이브러리를 바꾸면서 아래의 태그에서 에러가 발생했다.
에러 내용은 아래와 같다.
Attribute "type" is required and must be specified for element type "resultMap".
Attribute "type" is required and must be specified for element type "resultMap".
이 문제를 해결하는 방법은 <resultMap> 태그에 type을 꼭 넣어줘야 한다.
* IBatis
<resultMap class="User" id="UserMap">
</resultMap>
* MyBatis
<resultMap type="com.common.bean.User" id="UserMap">
</resultMap>
위에서, MyBaits에서 type을 resultMap 형식에 따라 맞게 넣어준다. 위의 경우에는 DTO에 대한 타입을 넣었다.
반응형
최근댓글