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条)

报告相同问题?

悬赏问题

  • ¥20 beats蓝牙耳机怎么查看日志
  • ¥15 Fluent齿轮搅油
  • ¥15 八爪鱼爬数据为什么自己停了
  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏