线偶

线偶的IT笔记

2021年学习计划

0、持续学习者 Talk is cheap. Show me the code. 英语比编程简单。 学习和实践要平衡。 学会和时间做朋友。 学会投资,学会理财。 学会先做减法,再做加法。 学英语很重要,学

Tomcat 自定义错误页

在 conf/server.xml 中的 Host标签添加 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log" suffix=".txt" pattern="%h %l %u %t &quot;%r&quot; %s %b" /> // 这是新加的 <Valve className="org.apache.catalina.valves.ErrorReportValve" errorCode.400="webapps/ROOT/error.jsp" errorCode.0="webapps/ROOT/error.jsp" showReport="false" showServerInfo="false" /> // 这是新加的 </Host> 上面的 error.jsp 放在

在 Js 中统一设置请求参数的另一种方法

重写方法XMLHttpRequest.prototype.send 1 2 3 4 5 6 7 8 9 10 11 XMLHttpRequest.prototype._send = XMLHttpRequest.prototype.send XMLHttpRequest.prototype.send = function (params) { var attached_params = mdcUtil.MDC_DEVICE_ID + "=" + mdcUtil.getMdcDeviceId(); if (params) { params += "&" + attached_params; } else

Java 出现内存分配失败

问题 If you see that the storm process is getting crashed even though you have enough memory (swap/free) available then you should also check the “/proc/sys/vm/overcommit_memory” This switch knows 3 different settings: => 0: The Linux kernel is free to over commit memory(this is the default), a heuristic algorithm is applied to figure out if enough memory is available. => 1: The Linux kernel will always over commit memory,
0%