上一页 1 2 3 4 5 6 7 ··· 24 下一页
摘要: package com.xf; import java.util.concurrent.Callable; public class bbb implements Callable { private final String b1; public bbb(String b1) { this.b1 阅读全文
posted @ 2023-02-08 11:59 wujf 阅读(537) 评论(0) 推荐(0) 编辑
摘要: public void preHandle(BoundSql boundSql, RequestEntity requestEntity) { System.out.println("要执行的SQL:" + boundSql.getSql()); System.out.println("要执行的SQ 阅读全文
posted @ 2023-02-06 12:18 wujf 阅读(86) 评论(0) 推荐(0) 编辑
摘要: import time def log(delay=0): def decorator(func): def wrapper(*args, **kwargs): """我是 wrapper 的注释""" time1 = time.time() newargs = list(args) newargs 阅读全文
posted @ 2023-02-06 10:36 wujf 阅读(60) 评论(0) 推荐(0) 编辑
摘要: schedule的四种用法 schedule(task,time) task-所安排的任务 time-执行任务的时间 作用:在时间等于或者超过time的时候执行且仅执行一次 import java.text.SimpleDateFormat; import java.util.Calendar; i 阅读全文
posted @ 2023-02-03 14:19 wujf 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: 建表语句 drop table if exists magic_api_file; CREATE TABLE `magic_api_file` ( `id` int(11) NOT NULL AUTO_INCREMENT, `file_path` varchar(512) NOT NULL, `fi 阅读全文
posted @ 2023-01-16 12:29 wujf 阅读(1093) 评论(0) 推荐(0) 编辑
摘要: location /epayapi { proxy_pass http://127.0.0.1:7011; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forward 阅读全文
posted @ 2022-12-06 12:18 wujf 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 搜索页面采集,数据在控制台哦!!! 搜索页面采集,数据在控制台哦!!! 搜索页面采集,数据在控制台哦!!! 既然能打到控制台,当然也能传到系统!!! 既然能打到控制台,当然也能传到系统!!! 既然能打到控制台,当然也能传到系统!!! 阅读全文
posted @ 2022-11-15 18:16 wujf 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 搜索页面采集,数据在控制台哦!!! 搜索页面采集,数据在控制台哦!!! 搜索页面采集,数据在控制台哦!!! 既然能打到控制台,当然也能传到系统!!! 既然能打到控制台,当然也能传到系统!!! 既然能打到控制台,当然也能传到系统!!! 阅读全文
posted @ 2022-11-15 18:11 wujf 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 安装 yum install supervisor 设置开机启动 systemctl enable supervisord 启动supervisord systemctl start supervisord 配置java进程 目录/etc/supervisord.conf [program:moni 阅读全文
posted @ 2022-11-14 15:34 wujf 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 1、引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <grou 阅读全文
posted @ 2022-09-21 11:11 wujf 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 24 下一页