Eclipse中使用Mybatis Generator遇到的錯誤

hky87發表於2018-08-18

在Eclipse中使用Mybatis Generator遇到的錯誤:

  1.   java.lang.RuntimeException: Cannot instantiate object of type mybatis.PaginationPlugin

    這個是因為在我的generatorConfig.xml配置檔案中我加了一條

    < plugin type = "mybatis.PaginationPlugin" />

    導致報錯,刪除即可

2. 在執行生成Model等檔案時,資料庫裡其他schema下的表也被生成了,所以是schema設定了沒有起到作用,後來查詢發現,是MySQL的話需要在 < jdbcConnection > 設定里加一條

< property name = "nullCatalogMeansCurrent" value = "true" />


加上之後執行,就成功了

參考地址: http://www.mybatis.org/generator/usage/mysql.html  

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10314474/viewspace-2200340/,如需轉載,請註明出處,否則將追究法律責任。

相關文章