摘要: 一、前言 一直有这么一个疑问:在使用postman工具测试api接口的时候,如何使用 json 字符串传值呢,而不是使用 x-www-form-urlencoded 类型,毕竟通过 key-value 传值是有局限性的。假如我要测试批量插入数据的接口呢,使用 x-www-form-urlencode 阅读全文
posted @ 2021-03-02 18:42 某菜狗 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 看到很多注解都被@Inherited进行了修饰,但是这个@Inherited有什么作用呢? 查看@Inherited代码描述: Indicates that an annotation type is automatically inherited. If an Inherited meta-ann 阅读全文
posted @ 2021-03-02 16:38 某菜狗 阅读(314) 评论(0) 推荐(0) 编辑
摘要: File 注意:File对象其本质只是表示一个路径 构造函数:File(String pathname),该参数pathname可以是绝对路径也可以是相对路径(如果是相对路径的话会默认表示成在该项目之下,建议使用绝对路径更容易把控) **public boolean exists();**测试改文件 阅读全文
posted @ 2021-02-21 17:53 某菜狗 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: Spring Boot中发送邮件具体的使用步骤如下 1、添加Starter模块依赖 2、添加Spring Boot配置(QQ/网易系/Gmail) 3、调用JavaMailSender接口发送邮件 开始编码 创建springboot项目,添加依赖 1、添加依赖 在 Maven pom.xml 配置文 阅读全文
posted @ 2021-02-21 17:51 某菜狗 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1、首先准备需要用到的MySQL压缩包 百度云链接,版本是8.0.17 链接:http://https://pan.baidu.com/s/1f3oz4sfOxXhWWmgdOkw_Qw 提取码:sxjv 2、检查是否有旧版本的mysql包,有的centos镜像会默认携带 rpm -qa | gre 阅读全文
posted @ 2021-02-21 17:49 某菜狗 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 1.安装redis 1.可以通过官网下载 地址:http://download.redis.io/releases/redis-3.0.0.tar.gz 2.使用linux wget命令 wget http://download.redis.io/releases/redis-3.0.0.tar.g 阅读全文
posted @ 2021-02-21 17:47 某菜狗 阅读(241) 评论(0) 推荐(0) 编辑
摘要: MAVEN依赖 <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.10</version> </dependency> Reflections 的作用 R 阅读全文
posted @ 2021-02-21 15:49 某菜狗 阅读(135) 评论(0) 推荐(0) 编辑