范文芳
摘要: 恢复内容开始 首先新建一个SpringBoot(版本号2.5.4)项目,写一个TestController,一个实体类Response。 启动程序,使用Api Generator Plus 自动生成请求Uri: http://172.16.3.16:8080/spring.mvc.format.da 阅读全文
posted @ 2021-09-18 19:47 布I衣 阅读(886) 评论(0) 推荐(0)
摘要: 2021.2.1重置方法: 打开文件夹目录:C:\Users\xxx\AppData\Roaming\JetBrains\IntelliJIdea2021.2\eval 找到如图文件:idea212.evaluation.key 删除它,然后重启IDE就可以了 阅读全文
posted @ 2021-09-12 16:41 布I衣 阅读(13608) 评论(0) 推荐(1)
摘要: import 'dart:math'; import 'dart:ui'; import 'package:flutter/material.dart'; void main() { runApp(MaterialApp( home: DemoLoginUI(), )); } class DemoL 阅读全文
posted @ 2021-02-22 18:05 布I衣 阅读(409) 评论(0) 推荐(0)
摘要: import 'dart:ffi'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is th 阅读全文
posted @ 2021-02-21 20:53 布I衣 阅读(377) 评论(0) 推荐(0)
摘要: https://support.weixin.qq.com/security/readtemplate?t=w_security_center_website/upgrade 阅读全文
posted @ 2021-01-25 22:36 布I衣 阅读(1072) 评论(0) 推荐(0)
摘要: nginx复制请求功能,可以实现一个请求转发到两个接口 用到的模块:ngx_http_mirror_module 网上说1.13版本之后自带该模块,我用的1.18确实是自带的,不用重新编译。 没有自带该模块时,编译: ./configure --prefix=/usr/local/nginx --w 阅读全文
posted @ 2021-01-07 13:15 布I衣 阅读(1262) 评论(0) 推荐(0)
摘要: 新建LoggableDispatcherServlet 类: package com.hsh.common.dispatch; import cn.hutool.core.collection.CollectionUtil; import com.fasterxml.jackson.databind 阅读全文
posted @ 2021-01-07 13:06 布I衣 阅读(1091) 评论(0) 推荐(0)
摘要: chrome的Copy as cURL功能很好用,但是windows10用户可能会遇到如下错误: curl: option --compressed: the installed libcurl version doesn't support this 解决方法: 下载 curl-7.73.0_1- 阅读全文
posted @ 2020-12-24 15:56 布I衣 阅读(4937) 评论(1) 推荐(2)
摘要: 新增临时素材接口 当请求参数type=thumb时,返回数据中的media_id字段为null,新增了thumb_media_id字段,而文档中未明确写出 上传图文消息素材【订阅号与服务号认证后均可用】 上传参数中的thumb_media_id只能是新增临时接口返回的media_id。 阅读全文
posted @ 2020-12-08 14:48 布I衣 阅读(91) 评论(0) 推荐(0)
摘要: -- 功能: Api Generate Plus:自动生成接口文档并上传至YApi Copy as cURL:模仿Chrome浏览器控制台的 copy as cURL 功能,将Spring MVC项目接口一键生成 curl 命令 使用步骤: 1. 打开插件管理,搜索api generator plu 阅读全文
posted @ 2020-12-01 09:55 布I衣 阅读(1899) 评论(0) 推荐(0)