1. git的创建 git init 可以创建git 仓库 git add 文件名 可以提交文件到暂存区 git diff HEAD -- 文件名 对比文件与上一个版本之间的差别 git reset HEAD 可以将add 之后的文件进行取消 git commit -m "注释" 提交 git st ...
分类:
其他好文 时间:
2020-11-01 10:19:32
阅读次数:
16
一开始是准备用vite的,但总是出不来,案例也比较少,感觉还不成熟,暂时放弃了。 1、升级 vue-cli为最新4.5 cnpm install -g vue @vue/cli 2、创建项目 vue create demo1 选择Manually select features 选中这些组件 选择3 ...
分类:
其他好文 时间:
2020-10-31 02:40:11
阅读次数:
36
package redis.config; import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.connection.DataType;import o ...
分类:
其他好文 时间:
2020-10-31 02:05:49
阅读次数:
14
$idd = 35; $idArr = [0=>35,1=>39,2=>45,3=>47,4=>48,5=>80]; // 查询id,所在位置 $offset=array_search($id,$idArr); // 假设id位置 if($idArr[$offset]==reset($idArr)) ...
分类:
Web程序 时间:
2020-10-27 11:30:44
阅读次数:
39
Mybaties介绍 MyBatis是一个优秀的持久层框架,它对jdbc的操作数据库的过程进行封装,使开发者只需要关注 SQL 本身,而不需要花费精力去处理例如注册驱动、创建connection、创建statement、手动设置参数、结果集检索等jdbc繁杂的过程代码。Mybatis通过xml或注解 ...
分类:
其他好文 时间:
2020-10-26 11:46:25
阅读次数:
43
明明在配置文件中配置了清华的镜像,但是就是一直提示无法下载包。 目前网上大部分的解决方案配置如下: https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free https://mirrors.tuna.tsinghua.edu.cn/anacond ...
分类:
Web程序 时间:
2020-10-26 11:38:45
阅读次数:
46
解决 GitHub 的 raw.githubusercontent.com 无法连接问题 在使用 curl 下载文件时,如果出现以下情况 curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection ref ...
分类:
Web程序 时间:
2020-10-24 09:48:51
阅读次数:
57
正则 java.util.regex.Pattern 1、类结构 public final class Pattern implements java.io.Serializable 2、重要属性 private String pattern; 3、构造方法 private Pattern(Stri ...
分类:
其他好文 时间:
2020-10-21 20:35:08
阅读次数:
20
先直接展示配置文件,如下所示(使用的话直接复制,然后改改ip和port即可) map $http_upgrade $connection_upgrade { default upgrade; '' close; } upstream wsbackend{ server ip1:port1; serv ...
分类:
Web程序 时间:
2020-10-20 16:42:29
阅读次数:
43
1.下载logstash https://www.elastic.co/cn/downloads/logstash 2.配置 input { stdin { } jdbc { type => "tb_role" jdbc_connection_string => "jdbc:mysql://192. ...
分类:
数据库 时间:
2020-10-19 22:59:20
阅读次数:
35