码迷,mamicode.com
首页 > 其他好文 > 详细

Table configuration with catalog null, schema null错误的一个原因

时间:2014-12-15 09:03:37      阅读:901      评论:0      收藏:0      [点我收藏+]

标签:warnings   mysql   spring   mybatis   

我在进行Mybatis调试时出现了下面的警告提示:

Generation Warnings Occured
  Table configuration with catalog null, schema null, and table 表名 did not resolve to any tables
  Mybatis generator操作没有产生结果。

多处找资料发现在我的

generatorConfig.xml文件中:

 <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:Mysql://localhost:3306/" userId="用户名" password="密码" />

换成这样就行了:

<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:Mysql://localhost:3306/库名子?characterEncoding=utf8" userId="用户名" password="密码" />

也许对大家有帮助。

Table configuration with catalog null, schema null错误的一个原因

标签:warnings   mysql   spring   mybatis   

原文地址:http://blog.csdn.net/yewei11/article/details/41929179

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!