12 2020 档案
摘要:查占用端口 netstat -ano|findstr "6868" 查占用程序 tasklist|findstr "20052" 关掉 taskkill /PID 20052 /F
阅读全文
摘要:list.stream() 创建顺序流 list.parallelStream() 创建并行流 Arrays.stream(数组) Stream.of(数组) 通过parallel()把顺序流转换成并行流 Optional<Integer> findFirst = list.stream().par
阅读全文
摘要:注解(annotations) 1、@SpringBootApplication 包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让Spring Boot扫描到Configuration类并把它加
阅读全文
摘要:Workspace:工作区Index / Stage:暂存区Repository:仓库区(或本地仓库)Remote:远程仓库本地分支关联远程:git branch --set-upstream-to=origin/beta beta一、新建代码库# 在当前目录新建一个Git代码库$ git init
阅读全文

浙公网安备 33010602011771号