0 0

Mybatis提示Cannot find class [org.mybatis.spring.mapper.MapperScannerConfigurer]10

如题:mybatis提示如下异常,是什么原因?
by: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.mybatis.spring.mapper.MapperScannerConfigurer] for bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' defined in class path resource [applicationContext-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: org.mybatis.spring.mapper.MapperScannerConfigurer


mybatis相关配置:
<!-- scan for mappers and let them be autowired -->
   <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
       <property name="basePackage" value="com.hft.dal.mapper" />
       <property name="markerInterface" value="com.hft.dal.SqlMapper" />
   </bean>

问题补充:忘记说,这个是mybatis与spring整合
2013年7月05日 10:51

4个答案 按时间排序 按投票排序

0 0

采纳的答案

解压mybatis-spring1.0.0-RC2.jar,看其中是否有org.mybatis.spring.mapper.MapperScannerConfigurer这个类,若没有换个版本,http://www.jarvana.com/jarvana/archive-details/org/mybatis/mybatis-spring/1.0.2/mybatis-spring-1.0.2.jar

2013年7月05日 11:04
0 0

先看你加载的classpath,然后再看里面的jar包有没相应的class,可能是你的jar包版本不一致

2013年7月05日 16:46
0 0

刚搭建的框架吧?
如果读不到任何一个配置文件,就会抛出这个异常。

2013年7月05日 15:36
0 0

把引入的包贴出来看看,顺便把错误日志贴上来,内容多点,不然这样只会认为是缺少包。

2013年7月05日 13:45

相关推荐

    mybatis-3-config/mapper.dtd 解决mybatis头文件报错

    如果更改mapper,此处应该是:-//mybatis.org//DTD Mapper 3.0//EN) ; 执行完上面后clean项目(Project-&gt;clean); 如果继续报错则更改出错的头文件 将 &lt;!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0/...

    mybatis-3-config.dtd mybatis-3-mapper.dtd

    在MyBatis的配置和使用过程中,有两个核心的DTD(Document Type Definition)文件起着至关重要的作用,它们分别是`mybatis-3-config.dtd`和`mybatis-3-mapper.dtd`。 首先,我们来看`mybatis-3-config.dtd`。这个...

    mybatis-3-mapper.rar

    DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"&gt; ``` 这个声明告诉解析器,此XML文件遵循"MyBatis 3 Mapper DTD"的规则,使得IDE可以正确解析并提供...

    mybatis-3-mapper.dtd文件下载

    DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"&gt; &lt;mapper namespace="com.example.mapper.UserMapper"&gt; &lt;select id="selectUser" resultType="com....

    基于SpringMVC+Spring3+Mybatis框架的OA项目源码.zip

    基于SpringMVC+Spring3+Mybatis框架的OA项目源码.zip 基于SpringMVC+Spring3+Mybatis框架的OA项目源码.zip 基于SpringMVC+Spring3+Mybatis框架的OA项目源码.zip 基于SpringMVC+Spring3+Mybatis框架的OA项目源码.zip ...

    基于SpringBoot+Spring Data JPA+mybatis的仓库管理系统源码.zip

    1、基于SpringBoot+Spring Data JPA+mybatis的仓库管理系统源码.zip 2、该资源包括项目的全部源码,下载可以直接使用! 3、本项目适合作为计算机、数学、电子信息等专业的课程设计、期末大作业和毕设项目,作为参考...

    mybatis-3-mapper.dtd

    mybatis-3-mapper.dtd

    mybatis-spring-1.3.0.jar 下载

    &lt;bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"&gt; &lt;property name="basePackage" value="com.example.mapper" /&gt; &lt;!-- Mapper接口所在的包名 --&gt; ``` 在项目中,我们可以通过Spring的@...

    spring-boot+tk.mybatis通用mapper

    包括`spring-boot-starter-web`、`mybatis-spring-boot-starter`以及`tk.mybatis.mapper-spring-boot-starter`。确保版本与项目其他依赖兼容。 2. **配置MyBatis**: 在`application.properties`或`application....

    mybatis-3-mapper.dtd.zip

    PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "file:///path/to/your/mybatis-3-mapper.dtd"&gt; ``` 这里,`file:///path/to/your/mybatis-3-mapper.dtd`应该替换为你的本地`mybatis-3-mapper.dtd`文件的实际路径...

    eclipse中使用xml自动提示功能所需文件:mybatis-3-mapper.dtd

    eclipse中使用xml自动提示功能所需文件:mybatis-3-mapper.dtd eclipse中使用xml自动提示功能所需文件:mybatis-3-mapper.dtd eclipse中使用xml自动提示功能所需文件:mybatis-3-mapper.dtd

    mybatis-spring-1.3.3.jar官方下载

    MyBatis-Spring 是一个将 MyBatis ORM 框架与 Spring 框架集成的库,使得在 Spring 应用中使用 MyBatis 变得更加方便。mybatis-spring-1.3.3.jar 文件是这个集成库的一个版本,提供了对 MyBatis 1.3.3 和 Spring 的...

    MybatisX-idea.0.1.0.jar

    Intellij Idea Mybatis插件主要功能: 提供Mapper接口与配置文件中对应SQL的导航 编辑XML文件时自动补全 根据Mapper接口, 使用快捷键生成xml文件及SQL标签 ResultMap中的property支持自动补全,支持级联...

    springboot mybatis mapper.xml 配置

    &lt;groupId&gt;org.mybatis.spring.boot &lt;artifactId&gt;mybatis-spring-boot-starter &lt;version&gt;2.2.4 ``` 接下来,创建一个数据访问对象(DAO)接口,例如`UserMapper`,并使用`@Mapper`注解标记: ```java import ...

Global site tag (gtag.js) - Google Analytics