<resultMap id="historyResultMap" type="org.hugcode.common.pojo.User">
<id column="uid" property="uid"/>
<result column="username" property="username"/>
<result column="password" property="password"/>
<result column="updated" property="updated"/>
<result column="created" property="created"/>
<collection property="userHistories" ofType="org.hugcode.common.pojo.UserHistory">
<result column="correct" property="correct"/>
<result column="reply" property="reply"/>
<result column="created" property="created"/>
<result column="updated" property="updated"/>
<association property="question" javaType="org.hugcode.common.pojo.Question">
<!-- 这一块出错了-->
<id column="qid" property="qid"/>
<result column="description" property="description"/>
<result column="answer" property="answer"/>
<result column="type" property="type"/>
</association>
</collection>
</resultMap>
万能的 v 友们,很奇怪 idea 报了错 property (qid) can not found setter method ,但实际能正常运行,但结果存在问题:sql 语句查询后有八行,但 mybatis 返回的只有五行(数据库中并未存在 null 值)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.