《毛泽东选集》
...
读书笔记
罗素西方哲学史第一卷...
中国哲学史
...
剑桥版倚天屠龙史
...
巴以问题
巴以冲突
如何清理 git 历史
下载 下载BFG Repo-Cleaner工具,如 bfg-1.14.0.jar。 把敏感信息在当前最新版本里都删除。 使用mirror标志克隆一个裸仓库(普通文件将处于不可见):git clone --mirror git@git.woa.com:aaa/myproject myproject_rmhistory。 生成一个 rule 文件,如 rule.txt:testpass。每一行一个敏感词。 java -jar bfg-1.14.0.jar --replace-text rule.txt myproject_rmhistory。 cd myproject_rmhistory。 git reflog expire --expire=now --all && git gc --prune=now --aggressive。 关闭对 master 的写保护:git push -f。
Spring Boot 相关
启动基于 loader 的启动命令1java(可以重命名为应用名) -Denv=test -Dspring.profiles.active=test -Dn=appName(可以对 ENV 求值) -Xmx4096m -Xms4096m -XX:MetaspaceSize=128M -XX:+CMSClassUnloadingEnabled -DapplicationMode=spring -Dlogger.file=conf/logback.xml -Dconfig.file=conf/application-test.conf -javaagent:/usr/local/services/appName/libs/opentelemetry-javaagent-1.19.2.jar -XX:+CMSPermGenSweepingEnabled -XX:+PrintGCDetails -Xloggc:./logs/gc-%t.log -XX:+PrintGCDateStamps -XX:+HeapDumpOnOutOfMemoryError...
宇宙探索编辑部
...
Spring Web
Spring MVC把 httprequest 放入线程的过程1234567891011public class ServletRequestAttributes extends AbstractRequestAttributes { /** * Create a new ServletRequestAttributes instance for the given request. * @param request current HTTP request */ public ServletRequestAttributes(HttpServletRequest request) { Assert.notNull(request, "Request must not be null"); this.request = request; }} 在 RequestContextFilter 的子类...