### Error building SqlSession.在线等 求指教!!!
### Error building SqlSession.
### The error may exist in sqlconfig/Massage.xml
### The error occurred while processing mapper_resultMap[MessageResult]
### Error building SqlSession.
### The error may exist in sqlconfig/Massage.xml
### The error occurred while processing mapper_resultMap[MessageResult]
2017-09-15
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!-- namespace命名空间,为了对sql语句进行隔离,方便管理 ,mapper开发dao方式,使用namespace有特殊作用 -->
<mapper namespace="Message">
<resultMap type="bean.Message" id="MessageResult">
<id column="ID" jdbcType="INTEGER" property="id" />
<result column="COMMAND" javaType="VARCHAR" property="command" />
<result column="DESCRIPTION" javaType="VARCHAR" property="description" />
<result column="CONTENT" javaType="VARCHAR" property="content" />
</resultMap>
<select id="queryMessageList" resultMap="MessageResult">
select ID ,COMMAND,DESCRIPTION,CONTENT from message where 1=1
</select>
</mapper>
举报