码迷,mamicode.com
首页 >  
搜索关键字:springboot+mybatis    ( 301个结果
springBoot+Mybatis模板代码
目录 1 目录结构 2 全局配置文件 2.1 application.properties(resources下,自动生成) 2.2 mybatis-config.xml(resources下,手动创建) 2.3 config文件夹(java包下,手动创建) 2.3.1 mapper文件夹 2.3. ...
分类:编程语言   时间:2020-05-22 13:03:48    阅读次数:42
SpringBoot中Mybatis打印sql日志
application.yml中加上 # springBoot+Mybatis 控制台打印SQL语句 (方式一) logging: level: com.zoctan.api.mapper : debug # 配置slq打印日志 (方式二) mybatis-plus: configuration: ...
分类:数据库   时间:2020-05-15 21:52:30    阅读次数:172
MVC架构中各个层使用的注解 (springBoot + mybatis-plus)
1 @Service (写在Service层接口的实现类上 XXXServiceImpl) Q: 为什么不直接写在接口上?因为一个接口可能有多个实现 1 @Service 2 public class LogServiceImpl extends ServiceImpl<LogMapper, Log ...
分类:编程语言   时间:2020-05-07 15:23:06    阅读次数:70
SpringBoot+Mybatis配置多数据源,分包方式
看了不少网上关于多数据源的配置,大致可分为两类,分包方式和通过切面方式; 样例已上传至github:https://github.com/dadachao/multids 第一个子项目ds01即时使用分包方式完成多数据源配置。 总结项目中出现的问题和解决办法: 数据库的连接信息: 连接信息是写在db ...
分类:编程语言   时间:2020-05-04 00:23:38    阅读次数:101
Springboot - mybatis使用xml方式
步骤 1 : xml方式 Springboot Mybatis SQL语句可以使用接口加注解的方式,也可以用xml的方式,所以本篇记录 xml 方式怎么做 步骤 2 : 可运行项目 本篇接着上一篇教程的项目操作~~: "mybatis接口+注解方式" :https://www.cnblogs.com ...
分类:编程语言   时间:2020-04-29 12:29:40    阅读次数:77
Thymeleaf+SpringBoot+Mybatis实现的齐贤易游网旅游信息管理系统
项目简介 项目来源于: "https://github.com/liuyongfei 1998/root" 本系统是基于 Thymeleaf+SpringBoot+Mybatis 。是非常标准的SSM三大框架( SpringBoot就是一个大框架,里面包含了许多的东西,其中Spring就是最核心的内 ...
分类:编程语言   时间:2020-04-26 14:12:08    阅读次数:88
springboot+mybatis+mysql集成搭建
springboot+mybatis+mysql集成搭建 开发工具:IDEAjdk:1.8maven:3.6.3springboot集成mybati和mysql包括集成mybatis自动生成代码插件generator 使用IDEA 快速搭建springboot框架,使用Spring Initiali ...
分类:数据库   时间:2020-04-21 23:55:14    阅读次数:129
springboot mybatis注解方式批量insert和使用in语句查询
1、批量插入 @Insert({ "<script>", "insert into sys_user_role(user_id,role_id) values ", "<foreach collection='roles' item='item' index='index' separator=', ...
分类:编程语言   时间:2020-04-20 21:22:47    阅读次数:327
Springboot(2.2.2)+Mybatis-Plus(3.0-RC3)+shedLock
Springboot(2.2.2)+Mybatis-Plus(3.0-RC3)+shedLock(4.0.1) 简易的定时任务工程,只需要两个服务。实现小型定时任务处理
分类:编程语言   时间:2020-04-15 15:12:07    阅读次数:97
SpringBoot-CRUD+分页与网页灰化(附加一个好玩的小玩意)
SpringBoot总共有3种CRUD+分页:JPA,Mybatis,SQL lite,个人觉得mybatis用起来最方便。 学习教程:https://how2j.cn/k/springboot/springboot-mybatis-crud-pagination/1651.html#nowhere ...
分类:编程语言   时间:2020-04-06 13:26:54    阅读次数:79
301条   上一页 1 2 3 4 5 6 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!