有两个项目vict-test和vict-test-lib,项目vict-test引入vict-test-lib库 先创建软链接 返回到node的bin目录下创建vict-test软链接:ln -s /User/xxx/index.js vict-test,别忘了第一行的#!/usr/bin/env ...
分类:
其他好文 时间:
2021-02-23 13:59:13
阅读次数:
0
Mybatis分页 为什么分页? 减少数据的处理量 使用使用Limit分页 核心sql语句: <select id="getUserLimit" resultType="User" parameterType="map"> select *from mybatis.user limit ${star ...
分类:
其他好文 时间:
2021-02-22 12:10:50
阅读次数:
0
语句: SELECT ( SELECT GROUP_CONCAT( title ) FROM shop_goods_spu_specification_sub WHERE FIND_IN_SET( id, sku.spec_ids ) ) AS title FROM shop_goods_cart ...
分类:
数据库 时间:
2021-02-22 11:57:21
阅读次数:
0
mysql8: alter user 'root'@'localhost' identified by '123456'; mysql5.7: update user set authentication_string = password('123456') where user = 'root' ...
分类:
数据库 时间:
2021-02-22 11:45:52
阅读次数:
0
前期准备 代码从远程clone代码到本地,此时你本地代码链接一个远程仓库。比如地址:https://github.com/deerlin/cms-group.git 如需同时链接两个,可以再建立一个远程仓库。比如地址:https://gitee.com/deerlin/cms-group.git 具 ...
分类:
其他好文 时间:
2021-02-20 12:41:42
阅读次数:
0
NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_camgeom.h> static int select_filter_proc_fn(tag_t object, int type[3 ...
分类:
移动开发 时间:
2021-02-20 12:37:26
阅读次数:
0
命令行指令 Git 全局设置 git config --global user.name "Administrator" git config --global user.email "admin@example.com" 创建新版本库 git clone http://f86ec4dd880f/r ...
分类:
其他好文 时间:
2021-02-20 12:12:27
阅读次数:
0
#linux系统安全知识体 #账户安全-用户的基本概念 #linux用户类型 #用户信息储存 #/etc/passwd #/etc/shadow #/etc/group #/etc/gshadow #账户认证的方式 #账户访问文件权限分配 #权限表示方式 ...
分类:
系统相关 时间:
2021-02-20 12:07:12
阅读次数:
0
思路: 1. 查询出端口所在进程的PID 2. 杀死进程(PID) Linux 查询占用的端口(如8080端口) netstate -anp | grep 8080 杀死进程 kill -9 2787 #进程的pid Mac 查询占用的端口(如8080端口) sudo lsof -i tcp:808 ...
分类:
其他好文 时间:
2021-02-20 11:59:43
阅读次数:
0
一、MHA简介和架构 1.1 MHA简介 MHA(Master High Availability Manager and tools for MySQL)目前在MySQL高可用方面是一个相对成熟的解决方案,它是由日本人youshimaton采用Perl语言编写的一个脚本管理工具。MHA是一套优秀的 ...
分类:
数据库 时间:
2021-02-20 11:56:46
阅读次数:
0