에러 및 오류

[오류] It's likely that neither a Result Type nor a Result Map was specified.

유호야 2021. 1. 12. 10:41
반응형
Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: 
nested exception is org.apache.ibatis.executor.ExecutorException:
A query was run and no Result Maps were found for the Mapped Statement 
'com.yu.recipe.content.mapper.ContentSQLMapper.selectByNo'. 
It's likely that neither a Result Type nor a Result Map was specified.

 

ContentSQLMapper 에서 resultType을 빼먹으니 발생!

<select id = "selectByNo" resultType = "com.yu.recipe.vo.ContentVo">
		<![CDATA[
			SELECT * FROM ReContent WHERE content_no = #{content_no}
		]]>
</select>
반응형