Sql语句
前言工作中遇到的SQL查询方法、语法、和优化记录。
SQL 方法和关键字GROUP_COUNT\WM_COUNT# mysql group_concat# separator 用来替换拼接字段, eg: 水果-素菜select group_concat(c.category_name separator '-') category_name, cs.store_idfrom dt_category_store as cs inner join dt_category as c on cs.category_id = c.category_id and cs.category_type = 6group by cs.store_id
# dm wm_concat 方式select wm_concat(c.category_name) category_name, cs.store_idfrom dt_category_store as cs inner join dt_category as c on cs.category_id = c.category_ ...
Mybatis下Mapper文件例子
前言记一下Mybatis的常用写法,其中也有一些mybatis-plus的写法文档。
choose 用法<choose> <when test="reqVo.inspectionType == 3"> SQL1... </when> <when test="reqVo.inspectionType == 4"> SQL2... </when> <otherwise> SQL3... </otherwise></choose>
foreach 用法<foreach collection="categoryIds" open="(" separator="," close=")" item="categoryId"> #{categoryId} ...
域名自动化更新证书
前言目前免费证书的使用期限是90天,证书更新也从以前的一年一换变成了现在的三个月一换,本人自己域名加公司域名有近四十个之多,每次证书更新都是一个很费事又费时的工作,不得不进行自动化处理。111
安装安装很简单,一个命令:
curl https://get.acme.sh | sh -s email=my@example.com
创建 一个 shell 的 alias,例如 .bashrc,方便你的使用: alias acme.sh=~/.acme.sh/acme.sh;
自动为你创建 cronjob,,每天 0:00 点自动检测所有的证书, 如果快过期了,需要更新,则会自动更新证书。
注:如果没有安装crontab,可在安装crontab之后加入以下任务:
0 0 * * * "~/.acme.sh"/acme.sh --cron --home "~/.acme.sh" > /dev/null
更改服务地址acme.sh脚本默认ca服务器是zerossl,经常出错,会导致获取证书的时候一直出现:Pendi ng,The CA is pro ...
使用hexo和git实现多地更新和配置博客源文件
前言使用hexo写博客的一个问题就是源文件都是在本地的,如果换了电脑需要更新博客时就会比较麻烦。目前,觉得比较靠谱的办法就是用github来管理了。
利用git分支实现
hexo生成的静态博客文件默认放在master分支上。
hexo的源文件(部署环境文件)可以都放在hexo分支上(可以新创建一个hexo分支),换新电脑时,直接git clone hexo分支
hexo搭建博客原理
hexo帮助把博客发送到github,同时把md文件转换成网页文件。
hexo目录下的文件和github上的文件是不同的,public文件夹的文件通过hexo d 上传到github去了,其他的文件则留在本地目录下。
搭建hexo服务器端电脑设置准备工作
首先确保自己已经使用hexo在github搭建好了自己的个人博客。
对username.github.io仓库新建hexo分支,并克隆
在Github的username.github.io仓库上新建一个xxx分支,并切换到该分支,并在该仓库->Settings->Branches->Default branch中将默认分支设为xx ...
hexo命令
前言第一次用hexo写博客,之前有自己用自己的服务器写过博客,但后来服务器出问题,不堪回首,现在要用这个来重写博客了!!!
总要记录一点什么吧hexo的一些常用命令模版
hexo s # 启动服务hexo d -g # 编译项目并推送到github下mater分支hexo new post 测试 --path hexo/test # 创建title为测试文件名为test.md位置在hexo文件夹下的文章