摘要: MyBatisPlus-范围查询、模糊查询及排序查询 原文链接:https://blog.csdn.net/m0_61961937/article/details/125967684 一、范围查询 二、模糊查询 三、排序查询 一、范围查询 需求:对年龄进行范围查询,使用lt()、le()、gt()、 阅读全文
posted @ 2022-09-20 15:37 bitterteaer 阅读(395) 评论(0) 推荐(0) 编辑
摘要: mysql-too many connctions 最大连接数 show variables like 'max_connections'; set GLOBAL max_connections=1000; 最大睡眠时间 show global variables like 'wait_timeou 阅读全文
posted @ 2022-09-05 13:44 bitterteaer 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2450939/202209/2450939-20220904223811098-214610837.png) 阅读全文
posted @ 2022-09-04 22:38 bitterteaer 阅读(5) 评论(0) 推荐(0) 编辑
摘要: springcloud-rest ConfigBean.java @Configuration public class ConfigBean { // @Configuration 相当于 spring applicationContext.xml @Bean public RestTemplat 阅读全文
posted @ 2022-08-31 21:59 bitterteaer 阅读(14) 评论(0) 推荐(0) 编辑
摘要: springboot整合mybatis pom.xml <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dep 阅读全文
posted @ 2022-08-31 17:36 bitterteaer 阅读(7) 评论(0) 推荐(0) 编辑
摘要: cv2读取视频通过rtmp推流 cv2_rtmp.py import cv2 as cv import time import subprocess as sp import multiprocessing import platform import psutil class stream_pus 阅读全文
posted @ 2022-08-29 16:12 bitterteaer 阅读(376) 评论(0) 推荐(0) 编辑
摘要: Redis外网访问 修改 redis 的配置文件,将所有 bind 信息全部屏蔽。 # bind 192.168.1.100 10.0.0.1 # bind 192.168.1.8 # bind 127.0.0.1 关闭保护模式 修改redis的保护模式为no,不启用 127.0.0.1:6379> 阅读全文
posted @ 2022-08-29 14:29 bitterteaer 阅读(82) 评论(0) 推荐(0) 编辑
摘要: cv2读取视频并通过post上传 cv2_post.py import cv2 import requests import os def video_post(files): response = requests.post("http://127.0.0.1:5000/upload", data 阅读全文
posted @ 2022-08-29 14:01 bitterteaer 阅读(58) 评论(0) 推荐(0) 编辑
摘要: flask实时播放cv2读取的视频 app.py class VideoCamera(object): def __init__(self, url): self.cap = cv2.VideoCapture(url) def __del__(self): self.cap.release() de 阅读全文
posted @ 2022-08-29 13:11 bitterteaer 阅读(97) 评论(0) 推荐(0) 编辑
摘要: markdown插入视频 <video id="video" controls="" preload="none" poster="http://media.w3.org/2010/05/sintel/poster.png"> <source id="mp4" src="http://media.w 阅读全文
posted @ 2022-08-24 15:22 bitterteaer 阅读(117) 评论(0) 推荐(0) 编辑