在运行test方法时,产生了“Mapped Statements collection does not contain value for:+路径”的问题。
1.我们要注意映射文件中的命名空间与接口名字相对应。例如:
<mappers> <mapper resource="mapper/StudentMapper.xml"/> </mappers>
而你在写“StudentMapper.xml”文件时,最好根据大小写完全一致的方式去名字,以免产生错误。
2.在使用嵌套的时候,我们在引用方法时,要注意写相对地址的时候,要正确输入地址,例如:
<association property="book" column="bookid" javaType="Book" select="com.ex02.student.mapper.BookMapper.selectBookById"/>
这个时候,我们要注意把路径写全,中间不能有任何的空格。
以上就是我在写的时候,遇到的小问题。总之,大家在写的时候,要注意细节。