大家好,欢迎来到IT知识分享网。
在线工具
json等:http://www.bejson.com/jsoneditoronline/
时间戳等:https://tool.lu/
多媒体等:https://www.qtool.net/
properties、yml互转:https://www.toyaml.com/index.html
banner:https://www.bootschool.net/ascii;bsid=32EFC3BDCDA8AD7CF5072CB79D
linux工具包:http://mirrors.163.com/centos/7/os/x86_64/Packages/
http://vault.centos.org/6.3/os/x86_64/Packages/
在线Linux常用命令大全:https://www.toolfk.com/tool-find-linux
接口管理:https://www.eolinker.com/#/?status=link-jump
黑客相关网站
黑客之门:http://www.hackerdoor.com/
中国黑客联盟:http://www.chinahacker.com/index.asp
中国红客联盟:http://www.cnhonkerarmy.com/
Linux
查看端口:netstat -ano
netstat -nupl (UDP类型的端口)
netstat -ntpl (TCP类型的端口)
查看端口进程:netstat -tunlp|grep 8090
关闭进程:kill -9 59648
启动jar:java -jar xx.jar > log.file 2>&1 &
nohup java -jar xx.jar > log.file 2>&1 &
查看端口进程:netstat -tunlp|grep 8090
防火墙:firewall-cmd –zone=public –add-port=8096/tcp –permanent
windows
查看端口:netstat -ano
查看端口:netstat -ano|findstr “8090”
查看进程的详细信息:tasklist | findstr 进程号
查看哪个进程或者程序占用端口:tasklist|findstr “port”
结束应用进程:taskkill /f /t /im Tencentdl.exe
查看进程的详细信息:taskkill -F -PID 进程号
GIT常用命令
git clone http://username:/RPCS/RPCS.git
初始化:git init
把文件添加到缓冲区:git add filename
添加所有文件到缓冲区:git add .
git add –all (可添加被手动删除的文件)
删除文件:git rm filename
提交缓冲区的所有修改到仓库:git commit -m “提交的说明”
查看git库的状态:git status
比较文件修改前后的差异:git diff filename
查看日志:git log
将当前仓库回退到历史的某个版本:git reset
回退到上一个版本:git reset –hard HEAD^
回退到指定版本:git reset –hard d7b5 (d7b5是想回退的指定版本号的前几位)
查看仓库的操作历史:git reflog
学习相关网站
springcloud :https://spring.io/、https://www.springcloud.cc/
apache:http://www.apache.org/
mvnrepository:https://mvnrepository.com/
菜鸟教程:https://www.runoob.com/
易百教程:https://www.yiibai.com/
IDEA查用插件
.NR Null Object
AI Predictive Coding
FindBugs-IDEA
IdeaJar
Jboss jBPM
lombok
maven Helper
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/44818.html