Spring Boot添加Mybatis也是优雅到爆炸
首先找到pom.xml,添加MySQL和Mybatis依赖druid如果没用过就先不用管了,只当它是一个连接池就好了,可以替代dbcp,c3p0等,阿里出品
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!--MyBatis组件--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.2.0</version> </dependency> <!-- 为了监控数据库 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.25</version> </dependency>在resource目录下新建一个application.yml文件,替换掉原来的application.properties至于为啥看这里 http://blog.csdn.net/jackrex/article/details/11710675
没看明白也没关系,也是配置文件,语法很有层次感,看起来非常舒服,添加如下配置
datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://localhost:3306/dbzb username: root password: tiger type: com.alibaba.druid.pool.DruidDataSource name: mydb minIdle: 1 maxActive: 2 initialSize: 1 timeBetweenEvictionRunsMillis: 3000 minEvictableIdleTimeMillis: 300000 validationQuery: SELECT 'ZTM' FROM DUAL testWhileIdle: true testOnBorrow: false testOnReturn: false ## Mybatis 配置 mybatis: type-aliases-package: classpath*:com.shx.zhibo.dao.model mapper-locations: classpath*:com.shx.zhibo.dao.mapper/*.xml #这个插件是mybatis的分页查询 pagehelper: helperDialect: mysql reasonable: true supportMethodsArguments: true params: count=countSql不一一解释了,大概意思就是把原来spring+mybatis的一大堆配置,简化简化再简化拿到这来了,可能你现在有点奇怪,以前那些配置去哪了,这样能行吗?
1、自动创建datasource,spring boot会根据配置文件中的配置自动创建datasource
2、自动创建并注册SqlSessionFactoryBean并传入datasource
3、自动创建并注册SqlSessionTemplate
@MapperScan(basePackages = "com.shx.zhibo.dao")把这句注解加到application上就可以了,再然后就没有了。。。
如果你够勤快自己创建mapper,mapper.xml就可以使用了,如果不够勤快,请关注我下一篇博客