摘要: Tomcat安装目录/conf/logging.properties文件中ConsoleHandler.encoding改成GBK 阅读全文
posted @ 2024-06-27 11:14 李飞∮ 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 欲使用@RunWith(SpringJUnit4ClassRunner.class),需要Junit4版本4.12及以上 阅读全文
posted @ 2024-06-18 16:47 李飞∮ 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1.sysdm.cpl 配置环境变量 阅读全文
posted @ 2021-11-02 14:25 李飞∮ 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 例子: 信息码:111000110 多项式:G(x)=x5+x3+x+1 二进制序列:从多项式得到:101011,共6位 CRC校验码:1.信息码后面补位数5位0:11100011000000 2.“模2除”二进制序列 计算得到余数即CRC校验码:11001 数据帧:信息码加上CRC校验码得到:11 阅读全文
posted @ 2021-09-25 12:24 李飞∮ 阅读(2538) 评论(0) 推荐(0) 编辑
摘要: 使用切面,设置mapper层插入语句、更新语句的必填字段。比如插入时间、更新时间。 类名使用@Aspect 和@Component注解,方法名使用@Pointcut定义切点和@Before注解和execution关键字。 阅读全文
posted @ 2021-08-29 11:12 李飞∮ 阅读(23) 评论(0) 推荐(0) 编辑
摘要: ctrl+shift+u 大小写切换 ctrl+w 选中单词 阅读全文
posted @ 2021-08-28 23:33 李飞∮ 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Get请求: PathVariable用法: @ApiOperation("手机号码归属地查询")@RequestMapping(value = "/phoneAttributionQuery/{mobile}", method = RequestMethod.GET)@ResponseBodypu 阅读全文
posted @ 2021-01-12 14:54 李飞∮ 阅读(122) 评论(0) 推荐(0) 编辑