摘要: [root@centos00 ~]# ps -ef | grep nginx root 6682 1 0 18:30 ? 00:00:00 nginx: master process sbin/nginx nobody 6801 6682 0 18:46 ? 00:00:00 nginx: work 阅读全文
posted @ 2020-07-26 19:20 初入门径 阅读(734) 评论(0) 推荐(0)
摘要: 按住Ctrl键(Mac: command), 将鼠标移至相应的类或方法的上面, 然后单击进入源码 源码: 阅读全文
posted @ 2020-07-18 10:41 初入门径 阅读(6444) 评论(0) 推荐(0)
摘要: http://192.168.0.1/ 阅读全文
posted @ 2020-07-03 13:16 初入门径 阅读(3190) 评论(0) 推荐(0)
摘要: ((String)globalMap.get("tFileList_1_CURRENT_FILE")).substring(10,14).equals("demo") tFileList 全局变量 CURRENT_FILE:当前文件名。这是一个Flow变量,它返回一个字符串。CURRENT_FILE 阅读全文
posted @ 2020-07-02 12:42 初入门径 阅读(166) 评论(0) 推荐(0)
摘要: 在cmd端口输入以下命令: demo_run.bat --context_param job_param_1=001 --context_param job_param_2=002 // 本地运行快捷键: F6 阅读全文
posted @ 2020-07-01 14:28 初入门径 阅读(343) 评论(0) 推荐(0)
摘要: Microsoft Windows [版本 10.0.17763.1577] (c) 2018 Microsoft Corporation。保留所有权利。 查看文件 C:\Users\J\Desktop>dir parent /b /a-d /s > file_list.txt /b 获取文件文件名 阅读全文
posted @ 2020-06-26 16:11 初入门径 阅读(1838) 评论(0) 推荐(0)
摘要: select object_name, oracle_username, s.sid, s.serial# from v$locked_object l, dba_objects o, v$session s where l.object_id = o.object_id and l.session 阅读全文
posted @ 2020-06-23 07:26 初入门径 阅读(114) 评论(0) 推荐(0)
摘要: -- 查询orderdetail表在哪个数据库mysql> SELECT table_schema FROM information_schema.TABLES WHERE table_name = 'orderdetail';+ +| table_schema |+ +| mybatis |+ + 阅读全文
posted @ 2020-06-21 18:14 初入门径 阅读(4249) 评论(0) 推荐(0)