上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
一. 使用window.location.href+url的方式 这种方式可以获取到要下载的文件,但是当下载的文件不存在,或者下载过程中后台报错的话会发生跳转二. 使用$http实现异步无刷新的下载文件(1) $http({ method : "post", url : Constant.prefi Read More
posted @ 2020-06-18 09:48 ck_2016 Views(2082) Comments(0) Diggs(0)
转自:https://www.jianshu.com/p/15c86fb429f6 容器启动加载顺序: Read More
posted @ 2020-05-29 20:05 ck_2016 Views(400) Comments(0) Diggs(0)
转自:https://www.cnblogs.com/nele/p/6502750.html 线程池执行的流程: 当任务提交给ThreadPoolExecutor 线程池中,先检查核心线程数是否已经全部使用, 如果没有交由核心线程去执行任务, 如果核心线程数已经全部占用,则将任务添加到队列里面, 如 Read More
posted @ 2020-05-27 19:55 ck_2016 Views(170) Comments(0) Diggs(0)
转自:https://www.cnblogs.com/linjiqin/p/9600590.html 为了确保服务不会被过多的http长连接压垮,我们需要对tomcat设定个最大连接数,超过这个连接数的请求会拒绝,让其负载到其它机器。达到保护自己的同时起到连接数负载均衡的作用。 一、解决方案:修改t Read More
posted @ 2020-05-27 19:23 ck_2016 Views(247) Comments(0) Diggs(0)
转自:https://www.cnblogs.com/hiver/p/7850954.html 参数 全称 释义 说明 -pl --projects Build specified reactor projects instead of all projects 选项后可跟随{groupId}:{a Read More
posted @ 2020-04-09 20:10 ck_2016 Views(277) Comments(0) Diggs(0)
From: https://www.cnblogs.com/qiumingcheng/p/9492962.html https://www.jianshu.com/p/8675c12f50ee 底层 backlog参数主要用于底层方法int listen(int sockfd, int backlo Read More
posted @ 2020-04-05 16:47 ck_2016 Views(609) Comments(0) Diggs(0)
转自:https://www.cnblogs.com/grey-wolf/p/11403444.html 一、前言 jar包冲突分多种,简单理解来说,就是同package且同名的类在多个jar包内出现,如果两个jar包在同一个classloader下,那么最终的结果是,只会加载其中的一个。 有时,这 Read More
posted @ 2020-03-26 14:35 ck_2016 Views(1574) Comments(0) Diggs(0)
背景 Concurrent Mark Sweep,是一款基于并发、使用标记清除算法的垃圾回收算法,只针对老年代进行垃圾回收。CMS收集器工作时,GC工作线程和用户线程可以并发执行,以达到降低STW时间的目的。 开起VM选项-XX:+UseConcMarkSweepGC,表示对老年代的回收采用CMS。 Read More
posted @ 2020-03-26 13:58 ck_2016 Views(329) Comments(0) Diggs(0)
转自:https://www.cnblogs.com/wangtao_20/p/8294974.html 术语备注: 1、OLTP - 这是on-line transaction processing的简写。翻译成联机事务处理。就是在线交易的业务数据。这方面的数据库是关系型数据库。 2、OLAP - Read More
posted @ 2020-02-14 23:21 ck_2016 Views(254) Comments(0) Diggs(0)
From: https://blog.csdn.net/qq_23179075/article/details/78753136 这里说一下重写的 public int compareTo(Student o){} 这个方法,它返回三种 int 类型的值: 负整数,零 ,正整数。返回值 含义负整数 Read More
posted @ 2019-07-18 17:00 ck_2016 Views(139) Comments(0) Diggs(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页