1. 程式人生 > >mybatis generator: Table Configuration employee matched more than one table

mybatis generator: Table Configuration employee matched more than one table

問題描述:

Table Configuration employee matched more than one table

原因:
在生成 javaBean 時,在(同一或不同)資料庫中有多張表的名稱與目標表的名稱相同

解決方案:

<!--加上 schema 指定特定的資料庫-->
        <table schema="ssmcrud" tableName="employee" domainObjectName="Employee"/>