iBATIS用MYSQL查询数据为什么是NULL
这个是我写的JAVAbean这个是student.xml这是测试用的结果却是这样的数据库了birth为什么会是NULL??、求解...
这个是我写的JAVAbean
这个是student.xml
这是测试用的
结果却是这样的
数据库了birth 为什么 会是NULL??、求解 展开
这个是student.xml
这是测试用的
结果却是这样的
数据库了birth 为什么 会是NULL??、求解 展开
1个回答
展开全部
resultClass改为resultMap
追问
Caused by: com.ibatis.sqlmap.client.SqlMapException: There is no result map named Student in this SqlMap.
换了resultMap,就是这样了
追答
student.xml里配置resultMap
<resultMap class="Sutdent" id="student">
<result property="id" columnIndex="1"/>
<result property="name" columnIndex="2"/>
<result property="birth" columnIndex="3" javaType="java.util.Date"/>
<result property="score" columnIndex="4"/>
</resultMap>
class指向你的Class的类的路径,id随意取。result标签里的property和Student类的属性名对应。
然后select里的resultMap=“student”,这个student就对应上面那个resultMap标签里的id的值。
那个javaType属性不加也行
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询