摘要: 建表 CREATE TABLE `task_config` ( `id` int(11) NOT NULL AUTO_INCREMENT, `task_name` varchar(255) DEFAULT NULL COMMENT '定时任务名称', `cron_expression` varcha 阅读全文
posted @ 2025-06-16 11:34 小侯学编程 阅读(57) 评论(0) 推荐(0)
摘要: SpringBoot+Vue宝塔部署https springboot后台配置以及前端配置 --后端 server.port=9999 server.servlet.context-path=/jshERP-boot --前端 publicPath: '/erp/gxzy', 申请SSL证书 本人使用 阅读全文
posted @ 2025-06-03 10:52 小侯学编程 阅读(117) 评论(0) 推荐(0)
摘要: 【有道云笔记】Python学习 https://note.youdao.com/s/YrAlh04m 阅读全文
posted @ 2025-04-27 09:30 小侯学编程 阅读(25) 评论(0) 推荐(0)
摘要: 【有道云笔记】Vue3 https://note.youdao.com/s/aUUCC39Q 阅读全文
posted @ 2025-04-27 09:15 小侯学编程 阅读(23) 评论(0) 推荐(0)
摘要: <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </dependency> /** * 获取系统信息 * * @author cwg * @versi 阅读全文
posted @ 2025-04-25 10:10 小侯学编程 阅读(76) 评论(0) 推荐(0)
摘要: <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </dependency> private static final String HOST = "x 阅读全文
posted @ 2025-04-25 10:05 小侯学编程 阅读(14) 评论(0) 推荐(0)
摘要: 树表格做懒加载-点击小箭头走接口 children为[]则使用hasChildren的true/false来判断是否有子节点,另,如果要做点击小箭头走接口必须加lazy及load <el-table v-if="refreshTable" v-loading="loading" :data="dep 阅读全文
posted @ 2025-01-14 14:24 小侯学编程 阅读(68) 评论(0) 推荐(0)
摘要: 前端写法 //文件下载 async handleDownload(row) { try { // 假设文件是通过 GET 请求获取的,url 为文件资源的 API 地址 const response = await downloadFile(row.id); // if (!response.ok) 阅读全文
posted @ 2025-01-07 17:18 小侯学编程 阅读(478) 评论(0) 推荐(0)
摘要: 工具类部分内容 package com.hwd.campus.common.redis.utils; import com.hwd.campus.common.redis.constant.RedisKeyPrefixConst; import com.hwd.campus.common.redis 阅读全文
posted @ 2024-05-25 14:36 小侯学编程 阅读(97) 评论(0) 推荐(0)
摘要: 启动类增加注解并进行Bean注入 @EnableWebSocket @Bean public ServerEndpointExporter serverEndpointExporter() { return new ServerEndpointExporter(); } pom文件引入 <depen 阅读全文
posted @ 2024-04-01 17:01 小侯学编程 阅读(67) 评论(0) 推荐(0)