package com.demo.utils;import java.security.MessageDigest;/** * MD5加密类 * @author zys */public class MD5Utils { public final static String MD5(String s ...
分类:
其他好文 时间:
2021-04-01 13:36:02
阅读次数:
0
Tomcat下载 1.首先到tomcat官网找到download(https://tomcat.apache.org/download-90.cgi) 2.tomcat目录结构 3.tomcat学习模板 继承了HttpServlet通过response进行响应 http://localhost:80 ...
分类:
其他好文 时间:
2021-04-01 13:28:41
阅读次数:
0
兵长:胖sir,咋还在看基础知识嘞?你以前可不是这样的哦 胖sir:切,我今天看的和之前的可不一样 兵长:有啥不一样的,你能给我说出花来嘛 胖sir:小样,你自己好好看看 兵长:看看就看看 GO基础知识分享2 1、 多重赋值 交换2个数字的值 i := 10 j := 20 i , j = j, i ...
分类:
其他好文 时间:
2021-04-01 13:23:57
阅读次数:
0
修改package.json中的script,在build后面加个 --report "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build --report", "lint": "vue-cli- ...
分类:
其他好文 时间:
2021-04-01 13:17:14
阅读次数:
0
1. GLPK缺失 igraph::cluster_optimal社团检测算法依赖系统中的GLPK包。 MacOS 11.2 brew install glpk CentOS 7 wget http://download-ib01.fedoraproject.org/pub/epel/7/x86_6 ...
分类:
其他好文 时间:
2021-04-01 12:54:29
阅读次数:
0
package main import ( "encoding/json" "fmt" "io/ioutil" "os" ) type Student struct { ID int Age int Score int Name string } type Class struct { ID int ...
分类:
编程语言 时间:
2021-04-01 12:54:10
阅读次数:
0
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:
其他好文 时间:
2021-03-31 12:16:53
阅读次数:
0
1、普通安装cd /usr/local/ wget http://download.redis.io/releases/redis-4.0.11.tar.gz tar -zxvf redis-4.0.11.tar.gz 注意:make install PREFIX=目标安装路径 cd /usr/lo ...
分类:
其他好文 时间:
2021-03-31 12:03:09
阅读次数:
0
安装 配置环境变量,是mvn命令可执行 source /etc/profile 上传java代码,解压,进到代码目录,执行mvn package打包,执行过程中会进到apache仓库下载依赖进行打包 打包完成后,出现一个target文件夹,里面有一个jar包 mvn clean 先清除,后打包 mv ...
分类:
编程语言 时间:
2021-03-31 11:45:20
阅读次数:
0
现象: 执行 quasar create app 卡死在: Quasar downloading quasar starter kit... 分析: 由于 github.com 访问太慢,导致卡死。 下载到本地,避免从 github.com 上拉取。 解决: cd ~ git clone git@g ...
分类:
其他好文 时间:
2021-03-30 13:32:36
阅读次数:
0