摘要:
kill -USR1 `cat $PID` 阅读全文
摘要:
yum install svn 阅读全文
摘要:
2023-09-04 09:49:29.313 [main:2937] ERROR XMLSchedulingDataProcessorPlugin:322 - Error scheduling jobs: Support for specifying both a day-of-week AND 阅读全文
该文被密码保护。 阅读全文
摘要:
1. 查找指定端口 #方法1 netstat -tln | grep 8000 #方法2 netstat -tunlp | grep 80 2.查找指定端口程序的pid lsof -i:8000 3. 结束指定pid进程 kill -9 pid #杀死特定端口号的进程 #方法一:kill -9 `l 阅读全文
摘要:
判断一个字符串是否空串: 1、Spring 旧版本使用equals,新版本使用isEmpty()方法; 查找String的源码发现isEmpty的底层使用this.value.length==0进行判断。 粗略分析:equals在进行比较时耗时约0.1秒,==无耗时。 阅读全文
摘要:
select b.owner,b.object_name,a.session_id,a.locked_modefrom v$locked_object a,dba_objects bwhere b.object_id = a.object_id; select b.username,b.sid,b. 阅读全文
摘要:
问题现象: Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 49; colum 阅读全文
摘要:
ERROR StatusLogger No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically pro 阅读全文
摘要:
java通过反射将对象A得属性值赋值给对象B //测试类1public class Test1 { private String name; private String sex; private int age; public String getName() { return name; } p 阅读全文