whitePlay 2017-09-07 03:30 采纳率: 0%
浏览 23003
已采纳

SpringBoot集成Mybatis遇到问题

小白一个,第一次使用springboot,想用mybatis来做dao层框架,按网上资料进行了一下配置但是出现了一个错误,我不知道我的配置错在哪儿,麻烦大神帮忙指导一下,谢谢:
application.properties配置如下:
mybatis.mapper-locations=classpath:mapper/mapper/*Mapper.xml
mybatis.config-location=classpath:mapper/sqlMapConfig.xml
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=root
接着是sqlMapConfig.xml:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd">





然后是mapp.xml的配置


select * from user


sercive层代码如下:
package com.tky.test.service;

    import java.util.List;
    import javax.annotation.Resource;
    import org.springframework.stereotype.Service;
    import com.tky.test.dao.UserMapper;
    import com.tky.test.emit.User;

    @Service(value="userService")
    public class UserServiceImpl implements UserService{
        @Resource
        private UserMapper userMapper;

        @Override
        public List<User> findUser() {
            List<User> findAll = userMapper.findAll();
            return findAll;
        }

    }

然后是Mapper接口的代码:
package com.tky.test.dao;
import java.util.List;
import com.tky.test.emit.User;

    public interface UserMapper {

        public List<User> findAll();
    }

在下面是controller层的:
@RestController(value="userController")
public class UserController {

    @Resource
    private UserService userService;
    @RequestMapping("my")
    public List<User> getMy(){
        List<User> findUser = userService.findUser();
        return findUser;
    }
}

最后是springboot的主函数代码:
import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

    @SpringBootApplication
    @MapperScan(value="com.tky.test.dao")
    public class Driver {
        public static void main(String[] args) {
            //项目入口
            SpringApplication.run(Driver.class,args);
        }
        @Bean
        public SqlSessionFactory sessionFactory() throws Exception{
            SqlSessionFactory sqlSessionFactory = 
                new SqlSessionFactoryBean().getObject();
            return sqlSessionFactory;
    }

}

最后的报错信息很长是这样的:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [D:\work\tky_workspace\Test_SpringBoot\target\classes\com\tky\test\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in com.tky.test.Driver: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sessionFactory' threw exception; nested exception is java.lang.IllegalArgumentException: Property 'dataSource' is required

有没有大神能看明白的帮忙指导一下,谢谢

  • 写回答

2条回答 默认 最新

  • 鼠晓 博客专家认证 2017-09-07 03:40
    关注

    给【UserMapper】接口加个注解

     @Component
    @Mapper
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵