摘要: 这里只展示yml文件怎么配置 version: '3' services: mysql: image: mysql:5.7 container_name: mysql command: mysqld --character-set-server=utf8mb4 --collation-server= 阅读全文
posted @ 2024-03-18 12:45 IT终结者 阅读(18) 评论(0) 推荐(0) 编辑
摘要: cv2.VideoCapture(camera_number + cv2.CAP_DSHOW) 是OpenCV在Windows平台下用于指定使用DirectShow作为视频捕获后端的一种方式。这里的 cv2.CAP_DSHOW 是一个常量,表示使用DirectShow(DirectX Show)技术 阅读全文
posted @ 2024-03-15 22:03 IT终结者 阅读(914) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.data.mongodb.core.MongoTemplate; import org.springframework.data.mongodb.core.query.Criteria; import org.springframework.da 阅读全文
posted @ 2024-03-15 21:29 IT终结者 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 简单的CRUD 首先,定义一个实体类,例如User: @Document public class User { @Id private String id; private String name; private int age; // 构造函数、getter和setter省略... } 接下来 阅读全文
posted @ 2024-03-15 21:25 IT终结者 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 在Spring Data MongoDB中,MongoRepository接口提供了基本的CRUD操作。如果你想要通过MongoRepository更新单个字段,你可以自定义一个更新方法或者使用内置的save()方法。这里是一个示例: 假设你有一个名为User的实体类,并且有一个继承自MongoRe 阅读全文
posted @ 2024-03-15 21:18 IT终结者 阅读(644) 评论(0) 推荐(1) 编辑
摘要: 场景:当在机房中的时候,笔记本的有限网卡连接机房内网;wifi连接手机热点,我们需要同同时连接2个网络来访问,这时设置一个路由即可: 1、查看目前的路由 route print 我们可发现有2个网关 2、删除默认路由 route delete 0.0.0.0 3、添加静态路由,访问内网 解释:把17 阅读全文
posted @ 2024-02-21 14:59 IT终结者 阅读(1303) 评论(0) 推荐(0) 编辑
摘要: 配置网络 进入network-scripts目录下 cd /etc/sysconfig/network-scripts/ 编辑此文件:vim ifcfg-ens33 TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=static IP 阅读全文
posted @ 2021-12-29 10:26 IT终结者 阅读(336) 评论(0) 推荐(1) 编辑
摘要: 安装方式 node安装 打开nodeJS官网 https://nodejs.org/zh-cn/,选择LTS版本下载,下载后运行安装 nvm模式安装 nvm:node版本管理工具 github搜索nvm-->linux、mac window-->nvm-windows | nodist 安装完后配置 阅读全文
posted @ 2021-12-29 10:18 IT终结者 阅读(50) 评论(0) 推荐(0) 编辑
摘要: Center OS7 bond6 添加一块新的网络适配器 打开虚拟机设置bond //进入如下目录 cd /etc/sysconfig/network-scripts/ ls //创建bond文件,内容如下 DEVICE=bond0 TYPE=Bond NAME=bond0 BONDING_MAST 阅读全文
posted @ 2020-08-18 13:18 IT终结者 阅读(323) 评论(0) 推荐(0) 编辑
摘要: Nginx安装其他模块 安装fastdfs 准备环境 解压 阅读全文
posted @ 2020-03-31 09:04 IT终结者 阅读(246) 评论(0) 推荐(0) 编辑