摘要:
设置代理不同的 httpclient 设置方式不同 okhttp3.OkHttpClient Map<String, Object> resultMap = new HashMap<>(); OkHttpClient client = new OkHttpClient(); System.setPr 阅读全文
摘要:
迅雷云限速 利用 AList 添加云盘 安装 AList https://alist.nn.ci/ https://github.com/alist-org/alist/releases 我的 mac M2 自己的可以选择其他 解压 # 解压 tar -zxvf alist-xxxx.tar.gz 阅读全文
摘要:
使用命令行 执行脚本 from django.core.management.base import BaseCommand from django.db import transaction from apps.db.models import AdminMenu class Command(Ba 阅读全文
摘要:
修改地址仓库地址 cd $project cd .git vim config [remote "origin"] url = https://oauth2:访问令牌@仓库地址 或者使用 basic 认证 [remote "origin"] url = https://username:pwd@仓库 阅读全文
摘要:
加入 sudoer vim /etc/sudoers root ALL=(ALL) ALL gitlab-runner ALL=(ALL) NOPASSWD:ALL 阅读全文
摘要:
很多开发者 不遵从开发规范 甚至搞不清楚 各种对象之间关系 先说分层 领域层 domain DO 持久层 persistent PO 数据访问 data Access ADO 业务层 business BO 转换层 transfer TO 视图层 view VO 从数据库获取数据 domain 对应 阅读全文
摘要:
POJO POJO(Plain Ordinary Java Object) POJO 专指只有 setter/getter/toString 的简单类,包括 DO/DTO/BO/VO Bean 就是符合规约的 POJO AO(Application Object) AO(Application Ob 阅读全文