随笔分类 - 工作中学习
工作中学习到的记录
摘要:spingboot整合netty服务器端 1、引入pom <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> </dependency> 2、创建服务netty服务器 package com.tan.
阅读全文
摘要:安装emqx https://blog.csdn.net/weixin_41542513/article/details/134328627 springboot整合mqtt 1、引入依赖 <dependency> <groupId>org.springframework.boot</groupId
阅读全文
摘要:新手教程: https://juejin.cn/post/7083371183361490958 官网: https://natapp.cn/
阅读全文
摘要:业务场景 查询数据库的配置表,看配置进行选择不同公司的短信服务 代码 策略代码 // 策略接口 public interface SmsSendStrategy { void sendSms(String phone, String template, Map<String,String> ma
阅读全文
摘要:### 下拉多选element-ui 实现效果  组件代码 ```vue ``` 使用代码 ```vue ```
阅读全文
摘要:参考:https://blog.csdn.net/Claire_cz/article/details/125257392 https://www.jianshu.com/p/933d3961f9f2 按照https://blog.csdn.net/Claire_cz/article/detail
阅读全文
摘要:List 中的一些操作 A替换为自己的类 List普通分组 List<A> aList = new ArrayList<>(); //根据year进行分组 Map<String, List<A>> yearPsTitle = title1s.stream().collect(Collectors.g
阅读全文