Loading

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页
摘要: 背景 后端接口有登录或鉴权验证,通过 swagger 调用比较费劲,并且 java 的 swagger 库(不够自动化,嵌套类支持需要各种配置才能正常显示 schema)个人感觉也没有 .net core 的 swagger 库好用,所以 swagger 有就行了,我不是很想配那么多注解什么的。 我 阅读全文
posted @ 2021-08-09 00:00 myEsn2E9 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 先决条件 rabbitmq server 安装参考 一个添加了 web 依赖的 spring boot 项目 我的版本是 2.5.2 添加 maven 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>sp 阅读全文
posted @ 2021-08-08 23:14 myEsn2E9 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 说明 前提条件 ubuntu-20.04-server docker & docker-compose 安装参考 安装 准备 rabbitmq.conf 新建 rabbitmq.conf 文件,并粘贴以下配置: default_vhost = / default_user = [默认账户名称] de 阅读全文
posted @ 2021-08-08 17:07 myEsn2E9 阅读(1569) 评论(0) 推荐(0) 编辑
摘要: x64 deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted un 阅读全文
posted @ 2021-07-29 17:03 myEsn2E9 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Java sort Map by key (ascending and descending orders) 阅读全文
posted @ 2021-07-28 21:54 myEsn2E9 阅读(39) 评论(0) 推荐(0) 编辑
摘要: mybatis plus 将属性设置为 null 值会被忽略,最终生成的 sql 中不会有 set field = null(可能是某些情况) mybatis-plus 更新字段的时候设置为 null,忽略实体null判断 在 entity 字段上加上以下注解 @TableField(updateS 阅读全文
posted @ 2021-07-27 20:29 myEsn2E9 阅读(613) 评论(0) 推荐(0) 编辑
摘要: @JsonFormat(pattern = DatePattern.NORM_DATE_PATTERN) private Date time; 阅读全文
posted @ 2021-07-26 21:03 myEsn2E9 阅读(149) 评论(0) 推荐(0) 编辑
摘要: MybatisPlus:使用SQL保留字(关键字)的操作 必须要手动在 entity 的字段上加注解,否则最终会报错,因为 mybatis 或者 mybatis plus 不会自动处理 阅读全文
posted @ 2021-07-26 21:02 myEsn2E9 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 【Mybatis】如何在Mybatis XML文件中使用枚举变量 阅读全文
posted @ 2021-07-26 18:31 myEsn2E9 阅读(571) 评论(0) 推荐(0) 编辑
摘要: union 会删除重复数据 union all 不会删除重复数据 select * from ( select *,'a' as kind from tablea where name is not null union all select *, 'b' as kind from tableb w 阅读全文
posted @ 2021-07-26 18:18 myEsn2E9 阅读(56) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页