摘要:
1、查看docker中的redis容器 docker ps 2、使用redis-cli连接redis容器 docker exec -it <容器id> redis-cli 3、使用redis-cli连接远程单机redis docker exec -it <容器id> redis-cli -h <re 阅读全文
摘要:
POJO(Plain Ordinary Java Object):即简单Java对象,就是一个我们最常见的普通Java对象,这个概念是被大家叫出来的,它具有一些属性,然后提供对应的getter和setter。即不与数据库打交道的简单对象。 VO(View Object):视图对象,用于展示层,它的作 阅读全文
摘要:
一、创建批量更新存储过程 CREATE PROCEDURE update_edge_charge_status() BEGIN /* * 更新门禁收费状态. */ -- 1.创建临时表 CREATE TEMPORARY TABLE unit_tmp AS SELECT unit.id,unit.st 阅读全文
摘要:
例:docker exec -it dnsmasq容器名称 sh docker exec -it dnsmasq sh 阅读全文
摘要:
1、在WebSocketServer中将要注入的Service声明成静态变量 @ServerEndpoint("/imserver/{deviceId}") @Component @Slf4j public class WebSocketServer { public static SenderSe 阅读全文
摘要:
阿里云-对象存储OSS开发指南文档地址 https://help.aliyun.com/document_detail/44703.html?spm=a2c4g.11186623.6.1095.31447117Qsqm2t 示例: https://image-demo.oss-cn-hangzhou 阅读全文
摘要:
SELECT REPLACE(unix_timestamp(current_timestamp(3)),'.',''); 阅读全文
摘要:
执行命令 docker exec -it <container_id> reset-password 拿到密码重新登录即可 阅读全文
摘要:
第一种方法 <?php namespace Table; use Illuminate\Database\Eloquent\Builder; /** * * */ class TSingleService extends Table{ protected $table = 'single_servi 阅读全文
摘要:
1、微信模板消息官方文档 http://mp.weixin.qq.com/debug/cgi-bin/readtmpl?t=tmplmsg/faq_tmpl 2、申请微信公众平台接口测试账号 http://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbo 阅读全文