使用MyBatis Generator 生成器、 尝试生成Mapper、XML映射文件和Entity的时候,总是多生成xxxMapper.xml文件
并且User类生成的字段是数据库表中没有的字段
控制台提示:MyBatis Generator : Table Configuration scheme.table matched more than one table
解决办法:
官方文档地址:http://mybatis.org/generator/usage/mysql.html
在配置文件里添加:
<property name="nullCatalogMeansCurrent" value="true" />