摘要:
1.打开项目,并保证可以正常启动vue项目 2.设置信息: --remote-allow-origins=* --remote-debugging-port 3.终端启动项目: 得到访问地址 http://192.168.4.130:1799/ 4.配置启动项 5.配置浏览器 6.输入启动项监听的路 阅读全文
摘要:
目录一、流程1.创建流2.中间操作3.终结操作二、中间操作1.过滤filter2.map()3.sorted()4.flatMap5.limit()6.skip(int a)7.去重8.排序三、终结操作1.forEach2.count3.max&min4.collect5.anyMatch(重写判断 阅读全文
摘要:
1.表格初始化 @Data @EqualsAndHashCode(callSuper = true) @Table("表名") // @Table("t_tab_${cid}") 动态表名 @TableMeta("{'mysql-charset':'utf8mb4'}") //索引 @TableIn 阅读全文
摘要:
package com.osdiot.gas.device.commons.utils; import org.nutz.lang.Strings; import org.nutz.lang.Times; import org.nutz.lang.util.NutMap; import java.s 阅读全文
摘要:
package com.osdiot.cissync.util; import java.util.concurrent.*; /** * 线程池工具类 * * @Author: Mr.LB * @Date: 2021-03-17 11:36 * @Description: ThreadPoolUt 阅读全文
摘要:
package com.budwk.starter.excel.utils; import com.budwk.starter.excel.annotation.Excel; import com.budwk.starter.excel.annotation.Excels; import com.b 阅读全文
摘要:
//lambdaCnd工具类 jar包地址: wk-starter-database-8.0.0.jar public class CndWrapper extends Cnd { public CndWrapper() { } public static CndWrapper NEW() { re 阅读全文
摘要:
package cn.hutool.core.bean; import cn.hutool.core.bean.copier.BeanCopier; import cn.hutool.core.bean.copier.CopyOptions; import cn.hutool.core.bean.c 阅读全文
摘要:
public NutMap doSmsSendPost(String content, String mobile) { try { Base_sms_config config = baseSmsConfigService.getConfig(); if (Lang.isNotEmpty(conf 阅读全文
摘要:
需求: 简单的向关注公众号的用户发送消息(SpringBoot框架下使用) 1.首先获得公众号配置 注: 如果是测试,可申请测试公众号 https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login 申请之后会得到 配置信息 模板信息和用 阅读全文