摘要: 查看端口 netstat -an netstat -ano 查看某个端口被哪个应用占用 netstat -ano |findstr "端口号" 根据进程id查看进程名称 tasklist |findstr "进程id号" 杀掉进程 taskkill /f /t /im "进程id或者进程名称" 阅读全文
posted @ 2020-08-26 14:29 無玑小姐 阅读(191) 评论(0) 推荐(1) 编辑
摘要: 先上代码 package com.example.test; import com.lowagie.text.*; import com.lowagie.text.Font; import com.lowagie.text.Rectangle; import com.lowagie.text.rtf 阅读全文
posted @ 2020-08-26 14:24 無玑小姐 阅读(1120) 评论(0) 推荐(1) 编辑
摘要: 记录一下自己的一个粗心操作 项目数据库是Oracle 启动的时候报错ORA-12505, TNS:listener does not currently know of SID given in 原因是数据库连接写错了 本来应该是1524,结果写成了默认的1521,导致项目启动报错。 阅读全文
posted @ 2020-08-26 14:10 無玑小姐 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 参考:https://github.com/ant-design/ant-design/issues/3517 项目目录如下 要同时启动多个子项目,但是报错 Caught exception: Error: listen EADDRINUSE: address already in use :::8 阅读全文
posted @ 2020-08-26 14:05 無玑小姐 阅读(1295) 评论(0) 推荐(1) 编辑
摘要: 1,发送get请求 *export({ payload }, { put }) { yield put({ type: 'updateState', payload: { ...payload, selectedRows: [], loading: true }, }); window.locati 阅读全文
posted @ 2020-08-26 13:56 無玑小姐 阅读(1001) 评论(0) 推荐(0) 编辑