mybatis-generator插件执行报错:Cannot resolve classpath entry

Posted 沧海一滴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis-generator插件执行报错:Cannot resolve classpath entry相关的知识,希望对你有一定的参考价值。

 

记录一个小问题

使用了mybatis-generator插件自动生成实体类,DAO,Mapper,在执行时报错。报错信息如下

Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.5:generate (default-cli) on project onlineStudyManager: Execution default-cli of goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.5:generate failed: Cannot resolve classpath entry: D:managersrcmain esources

查看mybatis-generator.xml未找到有关该路径的相关信息

Cannot resolve classpath entry 翻译:不能解决类路径条目

D:managersrcmain esources该路径与代码文件路径有关,但是错误的

正确的为 D:managersrcmain esources

<resource>
     <directory>${basedir}src/main/resources</directory>
     <excludes>
           <exclude>lib/*.jar</exclude>
     </excludes>
</resource>

路径修改为 ${basedir}/src/main/resources 解决问题


---------------------
作者:黄三岁TYOB
来源:CSDN
原文:https://blog.csdn.net/qq_20492999/article/details/80763550
版权声明:本文为博主原创文章,转载请附上博文链接!

 

以上是关于mybatis-generator插件执行报错:Cannot resolve classpath entry的主要内容,如果未能解决你的问题,请参考以下文章

IDEA:springboot框架使用mybatis-generator插件报错:org.apache.ibatis.binding.BindingException: Invalid bound s

mybatis-generator 代码自动生成插件

Mybatis-Generator插件的使用与Spring集成Mybatis的配置

使用mybatis-generator插件生成mapper类

使用mybatis-generator插件生成mapper类

Mybatis-Generator插件自动生成DaoModelMapping相关文件