springboot 集成 mybatis
Posted 黄光跃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 集成 mybatis相关的知识,希望对你有一定的参考价值。
1,添加依赖
<!-- mybatis --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency>
2,数据源
spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8 spring.datasource.username=root spring.datasource.password=111111
3,指明映射文件路径
可以在配置文件配置,也可以在启动类添加注解:@MapperScan(" pojo 所在包名")
4,mybatis 自动生成工具干活了
以上是关于springboot 集成 mybatis的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot集成mybatis以及自动化测试代码实现
SpringBoot 集成MyBatis-Plus提示反序列化异常:cannot deserialize from Object value (no delegate- or property-bas