摘要: 性能测试 阅读全文
posted @ 2023-11-30 09:21 Phoenixy 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Jmeter开发java脚本主要的依赖包 使用idea 创建项目 1、创建java项目 2、导入依赖包 3、创建一个类,继承 AbstractJavaSamplerClient 类,并实现 runtest 方法和重写 getDefaultParameters 方法 getDefaultParamet 阅读全文
posted @ 2023-11-27 13:15 Phoenixy 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 基础 阅读全文
posted @ 2023-11-15 13:31 Phoenixy 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 虚拟环境的安装及使用 阅读全文
posted @ 2023-10-26 10:35 Phoenixy 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 思维导图 阅读全文
posted @ 2023-10-25 15:29 Phoenixy 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1=1 1<>1及<>的使用方法 阅读全文
posted @ 2023-10-19 14:49 Phoenixy 阅读(525) 评论(0) 推荐(0) 编辑
摘要: postman 阅读全文
posted @ 2023-10-13 09:54 Phoenixy 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 现代、快速(高性能)的 Web 框架,用于构建基于 Python 的 API;基于 Starlette 和 Pydantic 库构建而成 官网:https://fastapi.tiangolo.com/ 1、安装 # 对于生产环境,还需要一个ASGI服务器,如Uvicorn或Hypercorn # 阅读全文
posted @ 2023-10-12 17:28 Phoenixy 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 定义 递归是一种解决问题的有效方法,在递归过程中,函数将自身作为子例程调用。 思想 函数调用函数本身,直到不能调用为止 注意事项 基本情况用于保证程序调用及时返回,不在继续递归,保证了程序可终止。 递推关系,可将所有其他情况拆分到基本案例。 ​递推关系​: 一个问题的结果与其子问题的结果之间的关系。 阅读全文
posted @ 2023-09-22 16:12 Phoenixy 阅读(44) 评论(0) 推荐(0) 编辑
摘要: The content of element type "mapper" must match "(cache-ref|cache|resultMap*|parameterMap*|sql*|insert*|update*|delete*|select*)+". 服务启动异常 排查mapper.xm 阅读全文
posted @ 2023-09-18 17:20 Phoenixy 阅读(165) 评论(0) 推荐(0) 编辑