IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> springboot+mybatisplus记录 -> 正文阅读

[Java知识库]springboot+mybatisplus记录

windows:进入jar所在目录
java -jar ***.jar --server.port=9090 --spring.profiles.active=dev

springboot2.*接口访问出现乱码问题
https://blog.csdn.net/wx19900503/article/details/102921379


SpringBoot 应用程序启动过程探秘
https://www.jianshu.com/p/074229c54d56

<!-- 1:后面跟1=1 决对成立-->
?? ?<select id="queryPersonByidAndNo">
?? ??? ?select * from person where 1=1
?? ??? ?<if test=" id !=null and id !='' ">
?? ??? ??? ? and id = #{id}
?? ??? ?</if>
?? ??? ?<if test=" id !=null and id !='' ">
?? ??? ??? ?and ?no = #{no}
?? ??? ?</if>
?? ?</select>
?? ?<!-- 2 :后面跟where标签,会将第一个and过滤(不会过滤第二个)-->
?? ?<select id="queryPersonByidAndNo">
?? ??? ?select * from person where
?? ??? ?<where>
?? ??? ??? ?<if test=" id !=null and id !='' ">
?? ??? ??? ? and id = #{id}
?? ??? ??? ?</if>
?? ??? ??? ?<if test=" id !=null and id !='' ">
?? ??? ??? ??? ?and ?no = #{no}
?? ??? ??? ?</if>
?? ??? ?</where>
?? ?</select>

mybatisPlus自动代码生成实例(超级简单使用)
https://www.cnblogs.com/wyrlzy/articles/12033744.html

Swagger2 在线文档y用法
https://www.it610.com/article/1279421299902398464.htm
?

spring boot 动态注入bean(重点看看)
https://www.cnblogs.com/eternityz/p/12241143.html

设置Intellij IDEA忽略部分类编译错误
https://blog.csdn.net/qq_29663071/article/details/71524686

mybatis全篇
https://www.cnblogs.com/a8457013/category/1104392.html

springboot 多环境logback日志路径配置
https://www.cnblogs.com/qiang9527/p/12030989.html

简单快速的用SpringBoot访问静态资源(图片、html)
https://blog.csdn.net/liyantianmin/article/details/93907680
?

Mybatis增删改查mapper文件写法详解
https://www.jb51.net/article/107064.htm

MyBatis批量插入数据(MySql)
https://www.cnblogs.com/Eilen/p/6687372.html

mybatis-plus generator代码
https://www.cnblogs.com/Z-share/p/11712000.html
https://blog.csdn.net/tototuzuoquan/article/details/80374881

mybatis代码生成器-根据数据库生成对应Entity和Mapper
https://blog.csdn.net/qq_40448026/article/details/86619238

Mybatis数据库字段和实体属性的映射
https://blog.xinpapa.com/2019/03/04/mybatis-property-column/
https://www.cnblogs.com/nananana/p/8597466.html

SpringBoot在任意位置获得注入的bean对象
https://www.jianshu.com/p/f46d1e1bd299


generator源码地址:
https://github.com/mybatis/generator

Mybatis-generator生成Service和Controller
有service,serviceImpl实现和insertBatch的实现
https://www.cnblogs.com/lishun1005/archive/2018/12/03/10057129.html

mybatis generator一对一映射,一对多映射,批量插入,批量更新
https://blog.csdn.net/lx91216/article/details/79911342

Mybatis-generator生成Service和Controller
https://www.cnblogs.com/lishun1005/archive/2018/12/03/10057129.html

mybatisplus-generator自动生成insertBatch方法
https://blog.csdn.net/xiyeming/article/details/108013512

软件原型设计工具对比
https://www.zhihu.com/question/19572438

swagger默认访问地址:
http://localhost:8013/swagger-ui.html
?
mybatisGenerator按模板生成代码
https://blog.csdn.net/u014704612/article/details/104661478/

自定义生成mybatis ,可以自己控制模板
https://gitee.com/mickyli/mybatis-generator/tree/master/src/main/resources/template

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-10-30 12:25:55  更:2021-10-30 12:27:44 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:43:04-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码