上一页 1 2 3 4 5 6 7 ··· 18 下一页

2023年8月18日

java私有方法单元测试

摘要: 使用junit5,类的代码为 package com.sysush.tool; public class Tool1 { private void helloworld() { System.out.println("hello world"); } private int add(Integer 阅读全文

posted @ 2023-08-18 10:38 荷楠仁 阅读(188) 评论(0) 推荐(0) 编辑

2023年6月2日

ajax发送图片flask接收

摘要: 前端代码 ``` 显示并发送图片 上传 ``` 后端代码 ``` @app.route("/image1", methods=['POST']) def upload_image1(): a = request.files["file"] print(a.filename) print(type(a 阅读全文

posted @ 2023-06-02 08:21 荷楠仁 阅读(27) 评论(0) 推荐(0) 编辑

2023年5月22日

oracle常用命令

摘要: --删除表中一列 alter table TJBG1.f_njbg drop column c13_test; -- 给表增加一列 ALTER TABLE TJBG1.f_njbg ADD (c13_test int default -100 not null); COMMENT ON COLUMN 阅读全文

posted @ 2023-05-22 07:44 荷楠仁 阅读(16) 评论(0) 推荐(0) 编辑

2023年5月17日

systemd管理进程的例子

摘要: vi /usr/lib/systemd/system/node_exporter.service [Unit] Description=node_exporter [Service] ExecStart=/usr/local/node_exporter/node_exporter ExecReloa 阅读全文

posted @ 2023-05-17 07:58 荷楠仁 阅读(24) 评论(0) 推荐(0) 编辑

2023年1月30日

mac m1使用oracle sqlplus

摘要: 环境 mac studio(2022) Chip Apple M1 Max oracle 官网 https://www.oracle.com/database/technologies/instant-client/macos-intel-x86-downloads.html 只有Intel x86 阅读全文

posted @ 2023-01-30 17:38 荷楠仁 阅读(372) 评论(0) 推荐(0) 编辑

2023年1月29日

网络问题排查

摘要: 查看连了本机或者远程机器的某个端口的进程 netstat -an | grep 22 查看端口被谁占用 lsof -i :8080 阅读全文

posted @ 2023-01-29 14:43 荷楠仁 阅读(15) 评论(0) 推荐(0) 编辑

2023年1月20日

Powerbuilder练级攻略003_datawindow绑定接口返回数据

摘要: 开发一个接口,确保http://192.168.37.184:10103/demo3的Get请示返回 { "code":0, "data":[{"stu_num":1, "stu_name": "张三"},{"stu_num":2, "stu_name": "李四"}], "msg":"" } 新建 阅读全文

posted @ 2023-01-20 10:40 荷楠仁 阅读(137) 评论(0) 推荐(0) 编辑

Powerbuilder练级攻略002_datawindow

摘要: 新建一个目录,如D:\pb_project\tutorial\p013_dw File-New-Workspace-OK,选中D:\pb_project\tutorial\p013_dw,打开,文件名输入p013_dw,保存 File-New-Target-Application-OK,Applic 阅读全文

posted @ 2023-01-20 10:36 荷楠仁 阅读(144) 评论(0) 推荐(0) 编辑

Powerbuilder练级攻略001_无窗口应用

摘要: 新建一个目录,如D:\pb_project\tutorial\p002_cmd File-New-Workspace-OK,选中D:\pb_project\tutorial\p002_cmd,打开,文件名输入p002_cmd,保存 File-New-Target-Application-OK,App 阅读全文

posted @ 2023-01-20 10:33 荷楠仁 阅读(30) 评论(0) 推荐(0) 编辑

Powerbuilder练级攻略000_窗口helloword

摘要: 创建工程 新建一个目录,如D:\pb_project\tutorial\p001_helloworld File-New-Workspace-OK,选中D:\pb_project\tutorial\p001_helloworld,打开,文件名输入p001_helloworld,保存 File-New 阅读全文

posted @ 2023-01-20 10:28 荷楠仁 阅读(60) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 18 下一页

导航