请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

mybatis代码自动生成器报错Table configuration with catalog null,

Table configuration with catalog null, schema null, and table demo did not resolve to any tables,请问怎么解决啊?

正在回答

4回答

甲蛙 2021-03-08 10:01:49

会不会是库里面没有demo这张表?要先执行下创建表的SQL

0 回复 有任何疑惑可以回复我~
  • 提问者 pandaBgc #1
    非常感谢!
    回复 有任何疑惑可以回复我~ 2021-04-19 17:37:24
  • 库里有demo表也还是报的Table configuration with catalog null, schema null, and table ebook_snapshot did not resolve to any tables这个错误怎么解决啊?
    回复 有任何疑惑可以回复我~ 2021-09-12 19:43:47
  • 你的问题最后怎么解决的
    回复 有任何疑惑可以回复我~ 2021-10-31 11:37:50
爬坡的程序猿 2021-03-16 20:40:00

似乎没有生成代码

 https://img1.sycdn.imooc.com//szimg/60515cee09e409f923920562.jpg

https://img1.sycdn.imooc.com/szimg/60515cfc09a5084b27420626.jpg

0 回复 有任何疑惑可以回复我~
  • 甲蛙 #1
    这个应该是Maven版本问题,按提示,把POM.XML里的${artifactId},改成${project.artifactId}
    回复 有任何疑惑可以回复我~ 2021-03-17 09:59:52
提问者 pandaBgc 2021-03-07 15:51:34

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
       PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
       "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

<generatorConfiguration>
   <context id="Mysql" targetRuntime="MyBatis3" defaultModelType="flat">

       <!-- 自动检查关键字,为关键字增加反引号 -->
       <property name="autoDelimitKeywords" value="true"/>
       <property name="beginningDelimiter" value="`"/>
       <property name="endingDelimiter" value="`"/>

       <!--覆盖生成XML文件-->
       <plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin" />
       <!-- 生成的实体类添加toString()方法 -->
       <plugin type="org.mybatis.generator.plugins.ToStringPlugin"/>

       <!-- 不生成注释 -->
       <commentGenerator>
           <property name="suppressAllComments" value="true"/>
       </commentGenerator>

       <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
                       connectionURL="jdbc:mysql://localhost:3306/wiki?serverTimezone=Asia/Shanghai&amp;useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false"
                       userId="wiki"
                       password="123456">
       </jdbcConnection>

       <!-- domain类的位置 -->
       <javaModelGenerator targetProject="src\main\java"
                           targetPackage="com.zhuanye.wiki.domain"/>

       <!-- mapper xml的位置 -->
       <sqlMapGenerator targetProject="src\main\resources"
                        targetPackage="mapper"/>

       <!-- mapper类的位置 -->
       <javaClientGenerator targetProject="src\main\java"
                            targetPackage="com.zhuanye.wiki.mapper"
                            type="XMLMAPPER"/>

       <table tableName="demo" domainObjectName="demo"/>
       <!--<table tableName="ebook"/>-->
       <!--<table tableName="category"/>-->
       <!--<table tableName="doc"/>-->
       <!--<table tableName="content"/>-->
       <!--<table tableName="user"/>-->
<!--        <table tableName="ebook_snapshot"/>-->
   </context>
</generatorConfiguration>

0 回复 有任何疑惑可以回复我~
  • 提问者 pandaBgc #1
    我的generator那个文件
    回复 有任何疑惑可以回复我~ 2021-03-07 15:52:10

强烈建议你把你的代码图片粘贴过来,不然不好解决

0 回复 有任何疑惑可以回复我~
  • 提问者 pandaBgc #1
    好的,谢谢你!!麻烦你看一下我的代码,救救孩子吧~
    回复 有任何疑惑可以回复我~ 2021-03-07 15:52:46
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信