1 2 3 4 5 ··· 15 下一页
摘要: 帧分类 CAN总线定义四种帧类型,分别为数据帧、远程帧、错误帧和过载帧。数据帧就是总线上传输用户数据的帧,其最高有效载荷是 8 Byte,除了有效载荷外,数据帧还包括必要的帧头帧位部分以执行CAN标准通信,比如消息标识符(Identifier)、数据长度代码、校验信息等。远程帧是用来向总线上其它节点 阅读全文
posted @ 2024-07-22 16:56 钟鼎山林 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 概念 CAN(Controller Area Network)总线协议是由 BOSCH 发明的一种基于消息广播模式的串行通信总线,它起初用于实现汽车内ECU之间可靠的通信,后因其简单实用可靠等特点,而广泛应用于工业自动化、船舶、医疗等其它领域。相比于其它网络类型,如局域网(LAN, Local Ar 阅读全文
posted @ 2024-07-19 11:17 钟鼎山林 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 通过https 登录token 拉取不到 ,就用ssh吧! 先查看本地git的配置 git config --list --global 发现没有配置 增加配置 git config --global user.name "beckh" git config --global user.email 阅读全文
posted @ 2024-07-02 15:02 钟鼎山林 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、下载安装 官网:https://www.charlesproxy.com/ 二、移动端抓包 设置可以包含 https 2.1、安装证书 设置代理 弹出对应的 代理ip 和端口号,在移动端的wifi 配置对应的代理,然后返回对应的证书地址 下载证书 安装 即可 三、打断点 选中你要打断点的请求 , 阅读全文
posted @ 2024-07-01 17:30 钟鼎山林 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-04-11 17:07 钟鼎山林 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 添加依赖 <!-- MyBatisPlus 的依赖 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.2</version> 阅读全文
posted @ 2024-02-19 16:50 钟鼎山林 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 添加依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> <gro 阅读全文
posted @ 2024-02-19 16:04 钟鼎山林 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # 更改文件上传大小 spring.servlet.multipart.max-file-size=10MB spring.servlet.multipart.max-request-size=10MB # 指定静态资源位置 可以url访问 spring.web.resources.static-l 阅读全文
posted @ 2024-02-05 10:24 钟鼎山林 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 在开发中修改代码 避免反复重启 编译 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> 使用idea 为 2023. 阅读全文
posted @ 2024-02-04 13:49 钟鼎山林 阅读(16) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo.controller; import com.alibaba.fastjson2.JSONObject; import org.springframework.web.bind.annotation.*; @RestController @Reque 阅读全文
posted @ 2024-02-04 11:19 钟鼎山林 阅读(2) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 15 下一页