修改golang包路径的时候一直报红字,因为go.mod里面也要一起修改。否则一直报错。 go.mod包名 module proxy-mgr mian.go里面的包名路径 import ( _ "proxy-mgr/boot" _ "proxy-mgr/router" ) ...
分类:
其他好文 时间:
2021-01-08 10:52:41
阅读次数:
0
//大家可根据自己需求调用里面的方法 转发 //必导入架包 需要可找http://four.haser.top/ package com.hr.util; import java.io.IOException;import java.io.InputStream;import java.util.H ...
分类:
编程语言 时间:
2021-01-08 10:32:02
阅读次数:
0
exists(key):确认一个key是否存在 del(key):删除一个key type(key):返回值的类型 keys(pattern):返回满足给定pattern的所有key randomkey:随机返回key空间的一个key rename(oldname, newname):将key由ol ...
分类:
其他好文 时间:
2021-01-07 12:16:59
阅读次数:
0
django入门到精通⑥消息管理器的升级处理,对关键词进行过滤示例# 安装分词工具(python37_django2) D:\python\message_test>pip install jieba 设置message_test/settings.py 1.自定义分词工具app/templatet ...
分类:
其他好文 时间:
2021-01-07 12:05:08
阅读次数:
0
日常项目中,使用注解@EnableAspectJAutoProxy @EnableAsync 这里面涉及对@Import注解支撑的底层原理:ConfigurationClassPostProcessor 这个类,说到这个类,我们要先从SpringBoot启动流程说起。 首先,看springboot启 ...
分类:
其他好文 时间:
2021-01-06 12:14:57
阅读次数:
0
最近再用https://www.apishop.net/中的提供的接口做练习,用vue-cli搭的脚手架. 前端页面地址 http://localhost:8080 数据接口地址 https://api.apishop.net/common/dogFamily/queryDogList 在confi ...
分类:
其他好文 时间:
2021-01-06 11:55:27
阅读次数:
0
参考资料:https://medium.com/swlh/rules-of-micro-frontends-7b96c10dde9 This is an opinionated list of best practices when designing applications that follo ...
分类:
其他好文 时间:
2021-01-06 11:53:06
阅读次数:
0
Highlights: Solve the complexities of write Redux (actions, reducers, selector...middleware...) Solve the immutable pattern with nested spread operato ...
分类:
其他好文 时间:
2021-01-06 11:43:35
阅读次数:
0
1 $0 匹配到AA ,就是输出行匹配到AA 的行 2 3 4 5 awk -F ‘ ’ awk ‘ ’ 6 7 8, NR 与FNR的区别: 9 10 11 12 BEGIN和END 都是特殊的pattern 13 14 15 16 17 18 19 20 ...
分类:
系统相关 时间:
2021-01-05 11:32:23
阅读次数:
0
@NotNull(message="名字不能为空") private String userName; @Max(value=12,message="年龄最大不能查过12") private int age; @Email(message="邮箱格式错误") private String email ...
分类:
Web程序 时间:
2021-01-05 10:36:55
阅读次数:
0