编译的过程中出现了一个吓人的错误: GOROOT=C:\Go #gosetup GOPATH=C:\Users\ahfuzhang\go #gosetup C:\Go\bin\go.exe mod tidy #gosetup go: downloading github.com/xxx/my_prj ...
分类:
其他好文 时间:
2021-04-29 11:53:31
阅读次数:
0
2021年4月24日17:29:22 环境: php8.0.3 centos 8.3 ./configure \ --prefix=/usr/local/php8 \ --with-config-file-path=/usr/local/php8/etc \ --with-curl \ --with ...
分类:
Web程序 时间:
2021-04-27 15:21:59
阅读次数:
0
这只要在src同级添加postcss.config.js文件 同时文件 里面写上这些,重新跑就没问题了 module.exports = { plugins: { 'autoprefixer': {browsers: 'last 5 version'} }} ...
分类:
Web程序 时间:
2021-04-24 11:47:48
阅读次数:
0
这个东西折腾了一天,在rhel7上死活pip不能用,网上找了各种方法,基本都是垃圾文章,在无数次试验后,终于这篇文章成功装上了 rhel红帽时面对企业的,centos是基于redhat重新编译后的开源免费版,网上找不到适用rhel的很多东西和操作,以后还是用centos吧,两个差不多 centos7 ...
分类:
编程语言 时间:
2021-04-22 16:07:34
阅读次数:
0
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.10.0.tar.bz2 tar -xf freetype-2.10.0.tar.bz2 cd freetype-2.10.0 ./configure --prefi ...
分类:
系统相关 时间:
2021-04-20 14:36:46
阅读次数:
0
写项目遇到一个获取时间的功能,简单的记录一下。 第一种:获取到开始时间和结束时间,不精确到时分秒。 1,先对界面进行布局,我拿两个时间框为例 <el-date-picker class="width-258" prefix-icon="el-icon-date" v-model="participa ...
分类:
其他好文 时间:
2021-04-14 11:50:46
阅读次数:
0
首先配置ThreadPoolTaskScheduler线程池: package cn.demo.support.config; import org.springframework.context.annotation.Bean; import org.springframework.context ...
分类:
编程语言 时间:
2021-04-08 13:36:55
阅读次数:
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
1.路径配置的分类 在nginx中,一共有4种不同的路径配置方法 = - Exact match ^~ - Preferential match ~ && ~* - Regex match no modifier - Prefix match #路径完全一样则匹配 location = path { ...
分类:
其他好文 时间:
2021-03-26 15:34:02
阅读次数:
0
Spring boot 中有时候需要控制配置类是否生效,使用 @ConditionalOnProperty 注解来控制 @Bean 是否生效。 例: @ConditionalOnProperty(prefix = "config",name = "enable",havingValue = "tru ...
分类:
其他好文 时间:
2021-03-17 14:53:37
阅读次数:
0