Skip to content

Commit ea56e28

Browse files
committed
update j2ee and db
1 parent 4891f18 commit ea56e28

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

J2EE学习之路.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ Eclipse中`Update Project`,选择`Force Update of Snapshots/Releases`
430430
* Maven编译jar出现:无法确定 T 的类型参数的异常的原因和处理方案: http://www.cnblogs.com/peida/p/4218210.html
431431
* 常见Maven仓库:
432432
* http://mvnrepository.com/ (搜索)
433+
* https://maven-repository.com/ (搜索)
433434
* http://maven.oschina.net/home.html (搜索)
434435
* http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/
435436
* http://repo1.maven.org/maven2/
@@ -786,6 +787,11 @@ JavaDoc: https://storm.apache.org/javadoc/apidocs/index.html
786787
* 官网:http://zookeeper.apache.org/
787788

788789

790+
## curator
791+
792+
* http://curator.apache.org/
793+
794+
789795
## GProf
790796

791797
* Linux Tools Project/GProf/User Guide:http://wiki.eclipse.org/Linux_Tools_Project/GProf/User_Guide
@@ -933,6 +939,11 @@ JavaDoc: https://storm.apache.org/javadoc/apidocs/index.html
933939

934940
* http://www.xmlpull.org/index.shtml
935941

942+
943+
## Apache Santuario(xmlsec)
944+
945+
* http://santuario.apache.org/
946+
936947
## SAXON
937948

938949
The XSLT and XQuery Processor

Linux学习之路.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,11 +1058,15 @@ find 后面可加指定目录,如"/etc/"
10581058

10591059
```shell
10601060
rdate # set the system's date from a remote host. (sudo apt-get install rdate)
1061+
grep -R "org.apache.commons.FileUtils" *
1062+
grep -inr --color "ERROR" test_debug.log
10611063
ps –fu $USER | grep java # 显示当前用户的所有线程
1064+
ps -ef | grep 4736 # 查看4736端口是否被占用
10621065
netstat -tulnp | grep mysqld # 查看mysqld的监听情况
10631066
find . –name "*.log" | xargs grep error # 在当前目录的所有日志文件中查找关键词"error"
10641067
find . -mmin -1 # 查找最近一分钟修改过的文件
10651068
find . -mtime -1 # 查找最近一天修改过的文件
1069+
ls -t `find . -name "*.log"` #列出最近修改的文件
10661070
glxinfo | grep rendering # 查询OpenGL是否打开。提示:direct rendering: Yes 表明启动正常
10671071
cfdisk -Ps # 查看磁盘分区的用法 cfdisk -Ps 磁盘设备名 只有一个硬盘也可以用 cfdisk -Ps
10681072
cfdisk -Ps /dev/sda

0 commit comments

Comments
 (0)