Spring MVC启动时报错Result Maps collection already contains value for ***Mapper.BaseResultMap

启动Spring MVC时,报错

Result Maps collection already contains value for com.basic.dao.mapper.UserMapper.BaseResultMap

是因为使用mybatis-generator时,userMapper.java和entity中的User,UserExample会重写,如果已存在文件userMapper.xml,在原来的基础上添加,所以在修改了数据表需要再次build时,注意先删除之前userMapper.xml文件。

//每次构建都会生成

你可能感兴趣的:(Spring MVC启动时报错Result Maps collection already contains value for ***Mapper.BaseResultMap)