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:\managersrc\main\resources

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

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

D:\managersrc\main\resources该路径与代码文件路径有关,但是错误的

正确的为 D:\manager\src\main\resources

<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
版权声明:本文为博主原创文章,转载请附上博文链接!

原文地址:https://www.cnblogs.com/softidea/p/10756042.html

时间: 2024-10-29 00:59:52

mybatis-generator插件执行报错:Cannot resolve classpath entry的相关文章

Mybatis分页-利用Mybatis Generator插件生成基于数据库方言的分页语句,统计记录总数 (转)

众所周知,Mybatis本身没有提供基于数据库方言的分页功能,而是基于JDBC的游标分页,很容易出现性能问题.网上有很多分页的解决方案,不外乎是基于Mybatis本机的插件机制,通过拦截Sql做分页.但是在像Oracle这样的数据库上,拦截器生成的Sql语句没有变量绑定,而且每次语句的都要去拦截,感觉有点浪费性能. Mybatis Generator是Mybatis的代码生成工具,可以生成大部分的查询语句. 本文提供的分页解决方案是新增Mybatis Generator插件,在用Mybatis

使用idea引入注解@SpringBootApplication报错Cannot resolve symbol &#39;SpringBootApplication&#39;

我在使用idea时,在类上使用注解@SpringBootApplication,但是一直报错. Cannot resolve symbol 'SpringBootApplication' 网络上有很多种方法,比如有的方法是把repository删除,然后重新maven project: 有的是因为目录spring-boot-autoconfigure中很多个release版本,把所有的版本都删除,然后重新install.如下所示: 有的办法是在Intellij idea下 file->Inval

eclipse 中离线安装activiti插件,报错“An error occurred while collecting items to be installed session context was:(...”

eclipse 中离线安装activiti插件,报错“An error occurred while collecting items to be installed session context was:(...” 按照文章:eclipse离线安装Activiti Designer插件,下载插件的两个离线安装文件,并按照步骤安装后,一直next后报错,如下: An error occurred while collecting items to be installed session co

Myeclipse2014添加mybatis generator插件

Myeclipse2014把mybatis generator插件直接放在dropins文件夹下,重启后不能成功安装mybatis插件. 既然离线安装不成功,可以选择在线安装 1.选择 Help->Install from site... 2.在弹出的对话框中点击右上角的Add按钮. 3.在弹出的对话框中输入 Name:mybatis Location:https://dl.bintray.com/mybatis/mybatis-generator (location中可以输入以上地址,也可以点

eclipse MyBatis Generator 插件的安装

今天做项目要用MyBatis Generator生成持久层,所以去网上找了 MyBatis Generator插件的地址. 但是发现地址链接都过期了.而离线版的都是直接将文件拷入eclipse插件文件夹的,这就会导致以后插件依赖冲突找不到解决方案. 后来才发现,eclipse 有自己的market 如图 点进去搜索mybatis就会看到MyBatis Generator 插件.接下来一路next就好了

sql执行报错--This version of MySQL doesn&#39;t yet support &#39;LIMIT &amp; IN/ALL/ANY/SOME subquery&#39;

问题: 不支持使用 LIMIT 子句的 IN/ALL/ANY/SOME 子查询,即是支持非 IN/ALL/ANY/SOME 子查询的 LIMIT 子查询. 解决: 将语句:select * from table where id in (select id from table limit 0,10) 变更为:select * from table where id in (select t.id from (select * from table limit 0,10)as t) sql执行报

Ubuntu下sh *.sh使用==操作符执行报错

----<鸟哥的Linux私房菜--基础篇>学习笔记 ubuntu默认的sh是连接到dash,而我们写shell脚本时使用的时bash.bash和dash在一些方面是不兼容的.因此执行同一个脚本,两者结果不一样,可能用./*sh可以执行,而sh *.sh报错. 为了正确实行使用./*.h 或者  bash *.sh  或者把==换成=(不兼容部分) 也可以直接让系统不使用dash....Ubuntu之所以使用dash是因为其体积小,兼容性高,但是悲催的时,一些bash可执行的脚步在dash下不

salt执行报错一例

执行报错: 查看服务端日志: 认证有问题 重新认证吧!!! minion端: [[email protected] ~]# cd /etc/salt/[[email protected] salt]# lsminion minion.d minion_id pki[[email protected] salt]# rm -rf pki/ [[email protected] salt]# /etc/init.d/salt-minion restart master端: [[email prote

oracle创建包后执行报错:object omgmig.test_package is invalid.

今天学习了一下oracle的包的写法,然后碰到这么个问题.包声明和包主体都正确,但是就是执行报错:object omgmig.test_package is invalid. 这是会报错的sql,看起来都正常对吧..但是就是会报错 --包声明 create package omgmig.test_package as procedure show1; end omgmig.test_package; --包体 create package body omgmig.test_package as