Error parsing Mapper XML. The XML location is ‘com/xxxxx/com/system/mapper/XXXXMapper.xml‘.

Error parsing Mapper XML. The XML location is 'com/xxxxx/com/system/mapper/XXXXMapper.xml'.
检查 xxxxMapper.xml文件中是否对应

		namespace为XXXMapper.java目录
<mapper namespace="com.X.X.system.mapper.XMapper">
    <resultMap type="com.X.X.system.pojo.car" id="carResult">
        <result property="id"    column="id"    />
        <result property="carName"    column="car_name"    />
        <result property="department"    column="department"    />
        <result property="state"    column="state"    />
    </resultMap>

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/d347091231/article/details/121515738