<?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" > <mapper namespace="com.itheima.dao.Account">
报这个错误的原因是对应的mapper文件的<mapper namespace="com.itheima.dao.Account">里面的路径没有和对应的dao接口路径一直,这里我写错了,应是
<mapper namespace="com.itheima.dao.AccountDao">
其他报错原因参考:其他原因