摘要:
常用正则 ^-?[1-9]\\d*$/ 整数 ^[1-9]\\d*$/ 正整数 ^-[1-9]\\d*$/ 负整数 ^([+-]?)\\d*\\.?\\d+$/ 数字 ^[1-9]\\d*|0$/ 正整数+0 ^-[1-9]\\d*|0$/ 负整数+0 ^([+-]?)\\d*\\.\\d+$/ 浮 阅读全文
摘要:
查看被锁的表ct select b.owner, b.object_name, a.session_id, a.locked_mode from v$locked_object a, dba_objects b where b.OBJECT_ID = a.OBJECT_ID 查看连接的进程 sele 阅读全文
摘要:
**ps -ef|grep vscode|grep -v grep|cut -c 9-16|xargs kill -9 ** 阅读全文
摘要:
maven依赖更新 pom文件路径下 mvn dependency:purge-local-repository 阅读全文
摘要:
git配置账户 gitconfig --global user.email "779333472@qq.com" git config --global user.name "779333472@qq.com" gitignore不生效 git rm -r --cached . git add . 阅读全文