<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[qq_37489565的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/qq_37489565</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; qq_37489565]]></copyright><item><title><![CDATA[压力机端口数量调整]]></title><link>https://blog.csdn.net/qq_37489565/article/details/124885036</link><guid>https://blog.csdn.net/qq_37489565/article/details/124885036</guid><author>qq_37489565</author><pubDate>Fri, 20 May 2022 15:57:19 +0800</pubDate><description><![CDATA[压力机端口数量调整
性能测试前，建议先修改配置文件中配置的端口数量，将支持的端口数量修改为最大，以免端口不足，影响测试结果。
      修改/etc/sysctl.conf文件：

      net.ipv4.tcp_fin_timeout = 30

      net.ipv4.ip_local_port_range = 1100 65535

      net.ipv4.tcp_tw_reuse = 1

      net.ipv4.tcp_tw_recycle = 1

      net.]]></description><category></category></item><item><title><![CDATA[在忙也要学习]]></title><link>https://blog.csdn.net/qq_37489565/article/details/105773981</link><guid>https://blog.csdn.net/qq_37489565/article/details/105773981</guid><author>qq_37489565</author><pubDate>Sun, 26 Apr 2020 17:56:46 +0800</pubDate><description><![CDATA[打开公众号，回复对应的获取码，即可获取资料。
Android




获取码
名称




001
APP初级


002
APP性能专项


003
认识 Android 中的 Activity 组件


004
Activity 生命周期


005
Activity 之间传递参数


006
Android 中 Activity 启动模式


007
在 Android 中 Intent 的...]]></description><category></category></item><item><title><![CDATA[linux 下使用 tc 模拟网络延迟和丢包]]></title><link>https://blog.csdn.net/qq_37489565/article/details/100143242</link><guid>https://blog.csdn.net/qq_37489565/article/details/100143242</guid><author>qq_37489565</author><pubDate>Sun, 26 Apr 2020 14:19:36 +0800</pubDate><description><![CDATA[1 模拟延迟传输简介
netem 与 tc: netem 是 Linux 2.6 及以上内核版本提供的一个网络模拟功能模块。该功能模块可以用来在性能良好的局域网中,模拟出复杂的互联网传输性能,诸如低带宽、传输延迟、丢包等等情况。使用 Linux 2.6 (或以上) 版本内核的很多发行版 Linux 都开启了该内核功能,比如 Fedora、Ubuntu、Redhat、OpenSuse、CentOS、...]]></description><category></category></item><item><title><![CDATA[Lombok介绍、使用方法和总结]]></title><link>https://blog.csdn.net/qq_37489565/article/details/105203363</link><guid>https://blog.csdn.net/qq_37489565/article/details/105203363</guid><author>qq_37489565</author><pubDate>Mon, 30 Mar 2020 17:04:52 +0800</pubDate><description><![CDATA[原文地址：https://www.cnblogs.com/heyonggang/p/8638374.html
1 Lombok背景介绍
大致意思是Lombok通过增加一些“处理程序”，可以让java变得简洁、快速。
2 Lombok使用方法
Lombok能以简单的注解形式来简化java代码，提高开发人员的开发效率。例如开发中经常需要写的javabean，都需要花时间去添加相应的getter/set...]]></description><category></category></item><item><title><![CDATA[log4j2项目打成jar包运行日志无法打印]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104927881</link><guid>https://blog.csdn.net/qq_37489565/article/details/104927881</guid><author>qq_37489565</author><pubDate>Tue, 17 Mar 2020 18:14:13 +0800</pubDate><description><![CDATA[maven项目中因为引入的有log4j2 在打成jar包 通过java -cp 命令运行时，引起下面这段错误，后果就是log日志无法打印。
ERROR StatusLogger Unrecognized format specifier [d]
ERROR StatusLogger Unrecognized conversion specifier [d] starting at position...]]></description><category></category></item><item><title><![CDATA[tomcat中增加内存]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104893426</link><guid>https://blog.csdn.net/qq_37489565/article/details/104893426</guid><author>qq_37489565</author><pubDate>Mon, 16 Mar 2020 10:37:37 +0800</pubDate><description><![CDATA[cmd中输入jvisualvm

有上面的可以说明加过内存了
添加步骤：
打开bin下的

加入如下

 set JAVA_OPTS=%JAVA_OPTS% -server -Xms1024m -Xmx1024m -XX:PermSize=212M -XX:MaxPermSize=512m


...]]></description><category></category></item><item><title><![CDATA[java时间的一些处理]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104591181</link><guid>https://blog.csdn.net/qq_37489565/article/details/104591181</guid><author>qq_37489565</author><pubDate>Sun, 01 Mar 2020 13:44:39 +0800</pubDate><description><![CDATA[时间的一些处理
获取当前的时间：
时间戳：
System.currentTimeMillis() //第一种

Date date = new Date();
System.out.println(date.getTime()); //第二种

格式化时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_HH_mm_ss"); //可...]]></description><category></category></item><item><title><![CDATA[离线安装eclipse-testNG插件]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104541172</link><guid>https://blog.csdn.net/qq_37489565/article/details/104541172</guid><author>qq_37489565</author><pubDate>Thu, 27 Feb 2020 17:52:54 +0800</pubDate><description><![CDATA[离线安装方式
进入官网
 http://testng.org/doc/download.html


点击release版地址：http://beust.com/eclipse

点击最下面的zipped/

下载最新版本
把features和plugins中的内容分别拷贝到eclipse对应文件夹重启

...]]></description><category></category></item><item><title><![CDATA[maven私服的配置]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104377510</link><guid>https://blog.csdn.net/qq_37489565/article/details/104377510</guid><author>qq_37489565</author><pubDate>Tue, 18 Feb 2020 16:30:25 +0800</pubDate><description><![CDATA[需要配置setting.xml和pom.xml

1.pom.xml设置


	&lt;distributionManagement&gt;
		&lt;repository&gt;
			&lt;!--id的名字可以任意取，但是在setting文件中的属性&lt;server&gt;的ID与这里一致 --&gt;
			&lt;id&gt;releases&lt;/id&gt;
			&lt;...]]></description><category></category></item><item><title><![CDATA[Jenkins 中文设置]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104337073</link><guid>https://blog.csdn.net/qq_37489565/article/details/104337073</guid><author>qq_37489565</author><pubDate>Sun, 16 Feb 2020 00:07:59 +0800</pubDate><description><![CDATA[Jenkins中文设定方法：

进入Manage Jenkins中，点击Manage Plugins（插件设定）。
安装插件“Locale plugin”，虽然这个插件问题比较多，但是这个是Jenkins中唯一可以汉化的插件。
安装中文汉化语言包插件（Localization: Chinese (Simplified)）。

在Default Language中设定“zh_CN”简体中文，"zh_...]]></description><category></category></item><item><title><![CDATA[8080占用被关闭]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104329708</link><guid>https://blog.csdn.net/qq_37489565/article/details/104329708</guid><author>qq_37489565</author><pubDate>Sat, 15 Feb 2020 16:15:58 +0800</pubDate><description><![CDATA[1.打开CDM
2.输入netstat -ano | findstr “8080”
3.回车，会出现如
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 8521
(如果没有8080端口就没占用)
4.输入 taskkill /pid 8521 -f
5.回车，出现：成功: 已终止 PID 为 8521 的进程。

...]]></description><category></category></item><item><title><![CDATA[maven-surefire-plugin配置]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104326433</link><guid>https://blog.csdn.net/qq_37489565/article/details/104326433</guid><author>qq_37489565</author><pubDate>Sat, 15 Feb 2020 12:59:48 +0800</pubDate><description><![CDATA[&lt;build&gt;
	&lt;plugins&gt;
		&lt;plugin&gt;
			&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
			&lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
			&lt;version&gt;2.7.1&lt;/ve...]]></description><category></category></item><item><title><![CDATA[sts设置Code Templates]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104174639</link><guid>https://blog.csdn.net/qq_37489565/article/details/104174639</guid><author>qq_37489565</author><pubDate>Tue, 04 Feb 2020 20:36:25 +0800</pubDate><description><![CDATA[&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;&lt;templates&gt;&lt;template autoinsert="false" context="gettercomment_context" deleted="false" description="Comment for getter method" en...]]></description><category></category></item><item><title><![CDATA[maven setting文件设置]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104157276</link><guid>https://blog.csdn.net/qq_37489565/article/details/104157276</guid><author>qq_37489565</author><pubDate>Mon, 03 Feb 2020 15:29:07 +0800</pubDate><description><![CDATA[&lt;?xml version="1.0" encoding="UTF-8"?&gt;

&lt;!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor 
	license agreements. See the NOTICE file distributed with this wor...]]></description><category></category></item><item><title><![CDATA[testng.xml]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104156999</link><guid>https://blog.csdn.net/qq_37489565/article/details/104156999</guid><author>qq_37489565</author><pubDate>Mon, 03 Feb 2020 15:11:15 +0800</pubDate><description><![CDATA[&lt;?xml version="1.0" encoding="UTF-8"?&gt;

 




 





 

]]></description><category></category></item><item><title><![CDATA[listandset实例]]></title><link>https://blog.csdn.net/qq_37489565/article/details/104135413</link><guid>https://blog.csdn.net/qq_37489565/article/details/104135413</guid><author>qq_37489565</author><pubDate>Mon, 03 Feb 2020 15:08:47 +0800</pubDate><description><![CDATA[package com.zyf.day16;
import java.util.Comparator;
import java.util.TreeMap;
class Emp {//implements Comparable{
String name;
int salary;
public Emp(String name, int salary) {
super();
this.name = na...]]></description><category></category></item><item><title><![CDATA[树莓派镜像编译]]></title><link>https://blog.csdn.net/qq_37489565/article/details/103685368</link><guid>https://blog.csdn.net/qq_37489565/article/details/103685368</guid><author>qq_37489565</author><pubDate>Tue, 24 Dec 2019 16:34:41 +0800</pubDate><description><![CDATA[树莓派的镜像制作：
推荐使用非root用户进行下列操作：

到https://buildroot.org/download.html下载最新的稳定版本，我下载的是https://buildroot.org/downloads/buildroot-2019.11.tar.gz
tar xzf buildroot-2019.11.tar.gz解压下载好的文件
cd buildroot-2019.11
...]]></description><category></category></item><item><title><![CDATA[ubuntu开启coredump]]></title><link>https://blog.csdn.net/qq_37489565/article/details/103684796</link><guid>https://blog.csdn.net/qq_37489565/article/details/103684796</guid><author>qq_37489565</author><pubDate>Tue, 24 Dec 2019 16:09:17 +0800</pubDate><description><![CDATA[1.打开/etc/sysctl.conf
vim /etc/sysctl.conf
2.最下面添加
kernel.core_pattern=core
3.ulimit -c unlimited  开启coredump

]]></description><category></category></item><item><title><![CDATA[Ubuntu python版本切换]]></title><link>https://blog.csdn.net/qq_37489565/article/details/102709894</link><guid>https://blog.csdn.net/qq_37489565/article/details/102709894</guid><author>qq_37489565</author><pubDate>Wed, 23 Oct 2019 20:09:53 +0800</pubDate><description><![CDATA[切换Python3为默认版本
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150


切换Python2为默认版本
sudo updat...]]></description><category></category></item><item><title><![CDATA[ubuntu18.04修改时区]]></title><link>https://blog.csdn.net/qq_37489565/article/details/102709845</link><guid>https://blog.csdn.net/qq_37489565/article/details/102709845</guid><author>qq_37489565</author><pubDate>Wed, 23 Oct 2019 20:08:10 +0800</pubDate><description><![CDATA[ubuntu 修改时区
输入如下指令：
sudo tzselect


选择亚洲Asia，继续选择中国China，最后选择北京Beijing
建立软链接
sudo ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

ok了

...]]></description><category></category></item></channel></rss>