SpringBoot框架能自动进行对项目进行配置,无需spring.xml,springmvc.xml配置文件,但有些配置内容需要还告诉SpringBoot框架,以便让它知道如何去进行自动配置,如数据库的驱动、用户名、密码,连接池等数据。
1.引入jar包(mybatis的jar包,数据库连接池的jar包和mybatis与springBoot整合的jar包)
在pom.xml中加入如下内容
<!--整合mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.19</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.38</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.2.8</version> </dependency>
2.在springBoot的配置文件中配置Druid数据源和mybatis的包扫描
在application.xml文件中加入如下内容:
datasource:
url: jdbc:mysql://localhost:3306/test
name: test
username: root
password: hr
driver: com.mysql.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
mybatis:
mapper-locations: classpath:com/baizhi/mapper/*Mapper.xml
type-aliases-package: com.baizhi.entity
3.开发DAO接口与mapper配置文件
4.开发service接口和实现类
5.配置入口类