欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot整合Mybatis

程序员文章站 2022-04-23 15:45:08
...

一、导入起步依赖

				<!--mybatis起步依赖-->
				<dependency>
				<groupId>org.mybatis.spring.boot</groupId>
				<artifactId>mybatis-spring-boot-starter</artifactId>
				<version>1.1.1</version>
				</dependency>
				<!-- MySQL连接驱动 -->
				<dependency>
				<groupId>mysql</groupId>
				<artifactId>mysql-connector-java</artifactId>
				</dependency>

二、配置数据库信息

			spring.datasource.driverClassName=com.mysql.jdbc.Driver
			spring.datasource.url=jdbc:mysql://127.0.0.1:3306/bootuseUnicode=true&characterEncoding=utf8
			spring.datasource.username=root
			spring.datasource.password=root

三、编写实体类,创建mybatis的mapper文件以及dao接口

在接口上写上@mapper注解标记该类是一个mybatis的mapper接口,可以被spring boot自动扫描到spring上下文中

四、在application.properties中添加mybatis的信息

			#spring集成Mybatis环境
			#pojo别名扫描包
			mybatis.type-aliases-package=cn.lpk.domain
			#加载Mybatis映射文件
			mybatis.mapper-locations=classpath:mapper/*Mapper.xml

五、编写controller测试