摘要: https://blog.csdn.net/u012106306/article/details/90172863 在前面一篇介绍了postman针对http协议的手机抓包,下面来介绍针对浏览器的抓包。 众所周知,postman在接口调试上有一定优势,使用较为便捷。虽然根据研发的接口文档可以查看到接 阅读全文
posted @ 2022-01-04 19:39 苦行者的刀 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 来源于 https://www.cnblogs.com/jpfss/p/11171722.html 作为一个java的开发小白 , 写完一个web方法测试是必不可少的 , 只有测试号没问题的方法给别人时 ,别人才不知道你是小白 , 要不然很尴尬的 。新手入坑的测试工具是postman 。这个工具用起 阅读全文
posted @ 2022-01-04 19:08 苦行者的刀 阅读(368) 评论(0) 推荐(0) 编辑
摘要: @RequestParam是传递参数的. @RequestParam用于将请求参数区数据映射到功能处理方法的参数上。 public String queryUserName(@RequestParam String userName) 在url中输入:localhost:8080/**/?userN 阅读全文
posted @ 2022-01-04 18:29 苦行者的刀 阅读(1182) 评论(0) 推荐(0) 编辑
摘要: 来源于 https://blog.csdn.net/walkerjong/article/details/7946109 引言:接上一篇文章,对@RequestMapping进行地址映射讲解之后,该篇主要讲解request 数据到handler method 参数数据的绑定所用到的注解和什么情形下使 阅读全文
posted @ 2022-01-04 17:09 苦行者的刀 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 来源于 https://blog.csdn.net/weixin_38004638/article/details/99655322 @RequestParam注解@RequestParam接收的参数是来自HTTP请求体或请求url的QueryString中。 RequestParam可以接受简单类 阅读全文
posted @ 2022-01-04 16:31 苦行者的刀 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 来源于 https://blog.csdn.net/qq_40470612/article/details/104225419 1.用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Typ 阅读全文
posted @ 2022-01-04 16:23 苦行者的刀 阅读(1556) 评论(0) 推荐(0) 编辑
摘要: 自学SpringBoot的过程中,发现开源的Ruoyi比较不错,而且作者公开全部的源码,再次谢谢作者 顺便帮这个业界良心做个推广 https://www.ruoyi.vip/ ,有兴趣学习和提高的网友们可以去学习下。 先总结,代码在下面 (1)要保存的这个表,只有一个字段是用来存储图片路径的字段;其 阅读全文
posted @ 2022-01-04 15:09 苦行者的刀 阅读(4242) 评论(0) 推荐(0) 编辑
摘要: application/json 四种常见的 POST 提交数据方式 来源于 https://blog.csdn.net/baichoufei90/article/details/84030479 http://www.cnblogs.com/softidea/p/5745369.html 转载声明 阅读全文
posted @ 2022-01-04 12:10 苦行者的刀 阅读(2196) 评论(0) 推荐(0) 编辑