Springboot集成mybatis

Posted naixin007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot集成mybatis相关的知识,希望对你有一定的参考价值。

1.引入依赖

        <!-- 通用Mapper启动器 -->
        <dependency>
            <groupId>tk.mybatis</groupId>
            <artifactId>mapper-spring-boot-starter</artifactId>
        </dependency>

2.定义mapper接口

public interface CategoryMapper extends Mapper<Category> 

3.启动类添加包扫描注解

@MapperScan("com.viuman.item.mapper")

或者在每个mapper接口上都加

@org.apache.ibatis.annotations.Mapper

4.基本查询

        Category category = new Category();
        category.setParentId(pid);
        return categoryMapper.select(category);

 

以上是关于Springboot集成mybatis的主要内容,如果未能解决你的问题,请参考以下文章

Spring+MybatisSpring整合Mybatis

Spring+MybatisSpring整合Mybatis

mybatisSpring整合(eclipse)以及事务管理

从 Spring 集成 MyBatis 浅析 Java动态代理

Spring+SpringMVC+MybatisSpring+SpringMVC+Mybatis实现前端到后台完整项目

001.camunda入门(springboot集成篇)