- 浏览: 6246 次
最新评论
文章列表
cat irosrms_restapi.log | grep -B 2 --line-buffered "usetime =" | grep -v 'response header' | awk -F "ms" '{fflush();print $1}'
tail -f irosrms_restapi.log | grep --line-buffered "usetime =" | awk -F "ms" '{fflush();print $1}' | awk '{ if ($12 > 3000) ...
<marquee width=1000 scrollamount=10><FONT face=楷体_GB2312 color=#ff0000 size=10><STRONG>一期环境即将停止服务,请联系:123456789</a>
</marquee>
import java.util.Arrays;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.slf4j.Logger;
import org.springframework.stereotype.Service;
import com.auto.RestLogger;
@Service
@Aspect
public class LogParam ...
1、设置ignore规则
在仓库目录下新建一个名为.gitignore的文件(因为是点开头,没有文件名,没办法直接在windows目录下直接创建,必须通过右键Git Bash,按照linux的方式来新建.gitignore文件)。如下图所示。
.gitignore文件对其所在的目录及所在目录的全部子目录均有效。通过将.gitignore文件添加到仓库,其他开发者更新该文件到本地仓库,以共享同一套忽略规则。
例如:
引用
/bin/
*.classpath
*.project
/build/output
/build/build-a.bat
afterrender:function(){
var hostId = Ext.getCmp("vCpu_numa_host_id").getValue();
var nodeName = Ext.getCmp("vCpu_numa_node_id").getValue();
ajaxRequest({
url: getContextPath() + '/load.action',
params : {'id': hostId, 'nodeName': ...
1、抓包命令:tcpdump -i 网卡名称 port 9090 -s0 -w e.pcap
2、配合wireshark分析抓包数据
http://www.cnblogs.com/ggjucheng/archive/2012/01/14/2322659.html
3、curl 发送HTTP请求
curl -H "Content-Type: application/soap+xml;charset=UTF-8" -X POST --data "<?xml version=\"1.0\" encoding=\"UTF ...
1、Tomcat服务器通过Connector连接器组件与客户程序建立连接,Connector组件负责接收客户的请求,以及把Tomcat服务器的响应结果发送给客户。默认情况下,Tomcat在server.xml中配置了两种连接器:
在tomcat的server.xml文件中可以找到如下几个connector
<!-- 1. HTTP -->
<
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort=&qu ...