欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java.lang.NoClassDefFoundError: org/apache/ibatis/annotations/Mapper

程序员文章站 2022-05-24 12:00:36
...

报错:
使用@Select等注解,mapper层异常
java.lang.NoClassDefFoundError: org/apache/ibatis/annotations/Mapper

原因:
MyBatis对应maven依赖有误

解决方法:
依赖改为

<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.4.5</version>
</dependency>