采纳答案成功!
向帮助你的同学说点啥吧!感谢那些助人为乐的人
Table configuration with catalog null, schema null, and table demo did not resolve to any tables,请问怎么解决啊?
会不会是库里面没有demo这张表?要先执行下创建表的SQL
非常感谢!
库里有demo表也还是报的Table configuration with catalog null, schema null, and table ebook_snapshot did not resolve to any tables这个错误怎么解决啊?
你的问题最后怎么解决的
似乎没有生成代码
这个应该是Maven版本问题,按提示,把POM.XML里的${artifactId},改成${project.artifactId}
<?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&useUnicode=true&characterEncoding=utf8&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>
我的generator那个文件
强烈建议你把你的代码图片粘贴过来,不然不好解决
好的,谢谢你!!麻烦你看一下我的代码,救救孩子吧~
登录后可查看更多问答,登录/注册
一课掌握前后端最火框架,更有职场竞争力
1.7k 2
1.8k 3
1.8k 2
1.2k 6
2.0k 16