基于Spring整合mybatis注解扫描是否成功的问题

目录
  • Spring整合mybatis注解扫描是否成功
  • Mybatis注解@MapperScan扫描包报:Invalid bound statement (not found)
  • 总结

Spring整合mybatis注解扫描是否成功

IDEA spring整合mybatis会使用注解扫描的配置

<context:component-scan base-package="/>

不管是使用@ Component、@Service、@Controller还是Repository,都是spring ioc操作bean的注解,其实际功能都是一样的,都是用来创建bean实例对象的。

正常情况下,如果自动扫描陈宫,IDEA类的界面在左侧会有绿色的C标记,如图所示。

AutoWired注解下面的类属性左侧也会有一个灰色的箭头和绿色的圆的标记,如果没有配置成功,那么就不会有这两个标记。

对于没有配置成功的情况,可以点击Project Strcuture ,点击modules,模块的srping部分,点击图中的加号,选择模块下面框里的所有xml文件,导入就可以了。

Mybatis注解@MapperScan扫描包报:Invalid bound statement (not found)

前几天,因为无知,将@MapperScan的路径修改到dao的上一层,如下:

在此情况下,对dao层进行Junit测试,测试通过;但对service层测试,则报错,报错如下:

于是乎我就找了度娘,很多老铁也给了各种解决方法(以下解决方法取自网络):

1.检查xml文件所在package名称是否和Mapper interface所在的包名。

2.UserDao的方法在UserDao.xml中没有,然后执行UserDao的方法会报此。

3. UserDao的方法返回值是List<User>,而select元素没有正确配置ResultMap,或者只配置ResultType。

4. 如果你确认没有以上问题,请任意修改下对应的xml文件,比如删除一个空行,保存,问题解决。

5.看下mapper的XML配置路径是否正确

但是我没有在上面的描述中解决我所报的错误,而我又是用springboot的注解模式的,于是我就对报错中的cachedMapperMethod

进行debug测试,找到了问题所在。

通过Junit测试dao层,得到debug相关信息,并没有任何异常,如下:

通过Junit测试service层,得到debug相关信息,如下所示,发现了问题所在,service接口也被mybatis接管了,而@MapperScan

作用:指定要变成实现类的接口所在的包,然后包下面的所有接口在编译之后都会生成相应的实现类。

总结

使用Mybatis的注解@MapperScan需要制定到项目中的dao层,避免其他的接口也被接管了。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。

(0)

相关推荐

  • 详解spring+springmvc+mybatis整合注解

    每天记录一点点,慢慢的成长,今天我们学习了ssm,这是我自己总结的笔记,大神勿喷!谢谢,主要代码!! ! spring&springmvc&mybatis整合(注解) 1.jar包 2.引入web.xml文件 <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param

  • 使用Spring扫描Mybatis的mapper接口的三种配置

    Spring扫描Mybatis的mapper接口的配置 1.前言 mybatis支持与spring结合使用,使得mybatis中的mapper接口可以作为spring容器中的bean被应用代码中相关类,如Service类,通过@Autowired自动注入进来. 在使用方面需要在项目中引入以下包: <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifac

  • Spring整合Mybatis 扫描注解创建Bean报错的解决方案

    目录 Spring整合Mybatis 扫描注解创建Bean报错 springboot+mybatis使用注解方式,出现错误创建dao层bean Spring整合Mybatis 扫描注解创建Bean报错 情景: LZ在整合Spring 和Mybatis 的时候,整合之后部署到tomcat报错 报错信息: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name

  • 解决SpringBoot整合Mybatis扫描不到Mapper的问题

    闲来无事,想学学springboot,开始搭建一个项目,但是一直显示mapper扫描不到的错误: "Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userController': Unsa

  • 基于Spring整合mybatis注解扫描是否成功的问题

    目录 Spring整合mybatis注解扫描是否成功 Mybatis注解@MapperScan扫描包报:Invalid bound statement (not found) 总结 Spring整合mybatis注解扫描是否成功 IDEA spring整合mybatis会使用注解扫描的配置 <context:component-scan base-package="/> 不管是使用@ Component.@Service.@Controller还是Repository,都是sprin

  • Spring整合MyBatis的三种方式

    1.整合之前的环境准备 导入相关的jar包 Junit测试 <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> MyBatis <dependency> <groupId

  • Spring整合Mybatis实操分享

    目录 Mybatis的基本工作原理 分析需要解决的问题 Spring中Bean的产生过程 解决问题 总结 在介绍Spring整合Mybatis原理之前,我们得先来稍微介绍Mybatis的工作原理. Mybatis的基本工作原理 在Mybatis中,我们可以使用一个接口去定义要执行sql,简化代码如下: 定义一个接口,@Select表示要执行查询sql语句. public interface UserMapper { @Select("select * from user where id = #

  • Spring SpringMVC,Spring整合MyBatis 事务配置的详细流程

    整合思路 (1)SSM是什么? Spring,SpringMVC,Mybastis (2)思路 搭建整合的环境,初始化环境 搭建Spring环境,配置完成并测试 (service层) 再使用Spring整合MyBatis框架,并测试(Dao层) 最后使用Spring整合SpringMVC框架,并测试(web层) SSM搭建环境 (1)数据库创建ssm (2)创建maven工程 (3)git (创建.gitignore来过滤不用提交的文件) (4)依赖框架 (5)log4j.properties

  • ssm整合之Spring整合MyBatis框架配置事务的详细教程

    ssm整合之Spring整合MyBatis框架配置事务 1.在applicationContext.xml修改代码如下: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance

  • Spring整合Mybatis的全过程

    1.Spring配置文件 1.1配置数据库连接池 <!--读取文件--> <util:properties id="config" location="classpath:Config/db.properties"/> <!--配置数据库连接池--> <bean id="source" class="org.apache.commons.dbcp.BasicDataSource">

  • Spring整合MyBatis图示过程解析

    这篇文章主要介绍了Spring整合MyBatis图示过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 1.导入所需要的jar依赖 !--MyBatis和Spring的整合包 由MyBatis提供--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <vers

  • SpringBoot整合Mybatis注解开发的实现代码

    官方文档: https://mybatis.org/mybatis-3/zh/getting-started.html SpringBoot整合Mybatis 引入maven依赖 (IDEA建项目的时候直接选就可以了) <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <ve

  • SpringBoot整合Mybatis无法扫描xml文件的解决

    网上说是使用idea在SpringBoot整合Mybatis时候会扫描不到xml文件 1.将xml文件放在resources下 2.在application.properties中配置xml文件的扫面 补充知识:Springboot整合mybatis /*.xml路径URl does not exist问题 解决一: 在配置文件下 扫描不到 xml文件: 原来的文件: <bean id="sqlSessionFactory" class="org.mybatis.spr

随机推荐