a、Core层 Authorization.Users.UserStore.cs public class UserStore : AbpUserStore<Role, User> { private readonly IRepository<User, long> _userRepository; ...
分类:
其他好文 时间:
2020-07-07 23:32:28
阅读次数:
203
起因:试图提高IDEA的编译速度,修改了idea.exe.vmoptions文件 报错 failed to create jvm 解决办法: 找到位于 (比如我的,C:\Users\HP\AppData\Roaming\JetBrains\IntelliJIdea2020.1)下的idea.exe. ...
分类:
其他好文 时间:
2020-07-07 23:29:34
阅读次数:
122
1、生成ssh秘钥,一路回车 ssh-keygen -o 会生成两个文件id_rsa 和 id_rsa.pub 2、找到id_rsa.pub,复制到github或者其他git平台,保存,然后就可以git clone xxx,无需秘钥 window在C:\Users\Administrator\.ss ...
分类:
其他好文 时间:
2020-07-07 19:46:11
阅读次数:
235
路由转换器 # 项目结构 mycodes # 仓库 |-- my_project |-- myproject | |-- urls.py # 总路由 |-- apps | |-- users | | |-- urls.py # 子路由 |-- utils # 工具包,路由转换器就放在这里 | |-- ...
分类:
其他好文 时间:
2020-07-07 19:29:54
阅读次数:
51
Bash的特性 1. tab补全 #命令补全 [root@clf ~]# user #命令补全useradd userdel usermod usernetctl users [root@clf ~]# s Display all 195 possibilities? (y or n) #以s开头的 ...
分类:
其他好文 时间:
2020-07-07 15:26:59
阅读次数:
66
JDBC连接数据库实例 1、 数据库表 1.1、创建表 CREATE TABLE `users`( `uid` INT NOT NULL AUTO_INCREMENT COMMENT '用户id', `uname` VARCHAR(20) NOT NULL COMMENT '用户名', `upass ...
分类:
数据库 时间:
2020-07-06 13:14:28
阅读次数:
70
#访问数据库users表读取name#name作为参数,传递查询logininfor表对应的年龄age,并将结果存为excelimport pymysqlimport pandas as pdimport openpyxlcoon=pymysql.connect(host='127.0.0.1', ...
分类:
数据库 时间:
2020-07-06 12:53:50
阅读次数:
86
论文实践 FuzzFactory: Domain-Specific Fuzzing with Waypoints 部分翻译 1简介 在分析二进制数据的程序中,模糊测试是发现安全漏洞(如缓冲区溢出)的常用技术。模糊测试一般是指测试的随机生成输入。但是近年来,过度引导模糊测试(CGF)算法取得了特别的优 ...
分类:
其他好文 时间:
2020-07-05 17:09:31
阅读次数:
193
一.对象类 @Data @AllArgsConstructor public class User { private Integer age; private String name; } 二.普通写法 private List<User> users =Arrays.asList(new Use ...
分类:
编程语言 时间:
2020-07-05 15:07:27
阅读次数:
252
import urllib.request; from bs4 import BeautifulSoup; response = urllib.request.urlopen("file:///C:/Users/junwei_zhou/Desktop/502/6.1/html.html"); htm ...
分类:
Web程序 时间:
2020-07-04 22:31:21
阅读次数:
78