Mybatis使用中遇returned more than one row, where no more than one was expected

一对一映射:用javaType

<association property="book_info" javaType="edu.hut.bookshop.pojo.Book" column="book_id"
                 select="edu.hut.bookshop.dao.BookMapper.selectByBookId"/>

多级联映射:用ofType

<collection property="posts" ofType="xxxxx">  

 </collection> 

你可能感兴趣的:(问题)