博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot(十)-- 整合MyBatis
阅读量:6762 次
发布时间:2019-06-26

本文共 891 字,大约阅读时间需要 2 分钟。

1.pom.xml 配置maven依赖

org.mybatis.spring.boot
mybatis-spring-boot-starter
1.3.1

2.一定要在启动的地方加上@MapperScan("com.xsjt.dao")

3.配置文件中加上配置

spring.datasource.url=jdbc:mysql://localhost:3306/consultspring.datasource.username=rootspring.datasource.password=123456spring.datasource.driver-class-name=org.gjt.mm.mysql.Driverspring.datasource.max-idle=10spring.datasource.max-wait=10000spring.datasource.min-idle=5spring.datasource.initial-size=5spring.datasource.validation-query=SELECT 1spring.datasource.test-on-borrow=falsespring.datasource.test-while-idle=truespring.datasource.time-between-eviction-runs-millis=18800spring.datasource.jdbc-interceptors=ConnectionState;SlowQueryReport(threshold=0)mybatis.typeAliasesPackage=com.xsjt.beanmybatis.mapperLocations=classpath:com/xsjt/xml/*Mapper.xml

 4.源码下载

  

 

转载地址:http://ywbeo.baihongyu.com/

你可能感兴趣的文章
ubuntu和Windows 下的GIF动图工具
查看>>
percona-toolkit 工具介绍
查看>>
Visual Studio2012使用技巧
查看>>
编程思想
查看>>
在Hadoop伪分布式模式下安装Hive(derby,mysql)
查看>>
经典布局样式
查看>>
python小白之np功能快速查
查看>>
Authorization Bypass in RSA NetWitness
查看>>
把ISO文件当作光盘挂载
查看>>
C#下Emgucv的配置
查看>>
你未必了解的DNS
查看>>
pycharm的放大和缩小字体的显示 和ubunt的截圖工具使用 ubuntu上安装qq微信等工具...
查看>>
【Java基础】sun.misc.BASE64和Java 8 java.util.Base64区别
查看>>
响应式开发的思路和断点的选择
查看>>
使用PL/SQL连接Oracle时报错ORA-12541: TNS: 无监听程序
查看>>
Mac011--DbWrench Database安装
查看>>
[原]Flash研究(一)——本地通讯
查看>>
bootStrap table 和 JS 开发过程中遇到问题汇总
查看>>
【小知识点】input输入框在安卓以及IOS手机中光标及字体不居中解决方法
查看>>
VB 设置循环,以及弹出messageBox
查看>>