文章分类 - 开发工具
摘要:切换tab command + 1/2/3 ctrl + tab / ctrl + shift + tab command + shift + [/] 回退 command + 左/右箭头
阅读全文
摘要:基本使用 -H 设置header -d 后接responseBody,并且以post形式发送 curl -H 'Content-Type: application/json' -d '{"xx": 1}' http://localhost:xxx
阅读全文
摘要:command + u 清屏 ctrl + u 清行 ctrl + a 光标到开头
阅读全文
摘要:注解定义 @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface PrintLog { } 切面实现 @Aspect @Component @Slf4j public class Prin
阅读全文