上一页 1 2 3 4 5 6 7 ··· 26 下一页
摘要: 将key-value的JSON数据,转换为insert的SQL语句,进而实现网页数据存储到数据库。 解析MySQL建表语句,找出”字符串“字段 遍历JSON结构,拼接为SQL语句 1、解析建表语句 之所以要解析建表语句,是因为在拼接SQL时,”字符串“字段没有双引号,需要手动加上。第一步就是通过JD 阅读全文
posted @ 2023-11-08 04:28 测试开发刚哥 阅读(563) 评论(0) 推荐(0)
摘要: 80道高频算法题来源于牛客网,这些答案都经过了我验证,可以复制粘贴后提交通过: 掌握这80道题,99%的测试岗位算法考试都能通过。建议收藏后反复练习。本文为Python版本答案,对于Java版本答案,请在电子书《算法挑战》目录中查看。 1、NC1 大数加法:中等 # 计算两个数之和 # @param 阅读全文
posted @ 2023-09-29 22:04 测试开发刚哥 阅读(211) 评论(0) 推荐(0)
摘要: # 系统架构 ![](https://img2023.cnblogs.com/blog/1629545/202308/1629545-20230823193147832-1564591573.png) 前端、后端、pytest均以**Docker**容器运行服务,单独的容器化执行引擎,项目环境隔离, 阅读全文
posted @ 2023-08-25 21:03 测试开发刚哥 阅读(63) 评论(0) 推荐(0)
摘要: # 概览 脚手架: ![](https://img2023.cnblogs.com/blog/1629545/202308/1629545-20230815225806427-50784841.png) 目录: ![](https://img2023.cnblogs.com/blog/1629545 阅读全文
posted @ 2023-08-23 19:31 测试开发刚哥 阅读(40) 评论(0) 推荐(0)
摘要: # What We Mean by "Spring" The term "Spring" means different things in different contexts. It can be used to refer to the Spring Framework project its 阅读全文
posted @ 2023-08-05 22:27 测试开发刚哥 阅读(48) 评论(0) 推荐(0)
摘要: # 一、引言 黑盒测试犹如案发现场,只能根据表象推断事件经过。 代码评审即深入调查,挖掘蛛丝马迹的线索,揭示背后的真相。 "They think I am hiding in the shadows, but I am the shadows." ![](https://img2023.cnblog 阅读全文
posted @ 2023-08-03 21:30 测试开发刚哥 阅读(114) 评论(0) 推荐(0)
摘要: # 设计理念 **聚焦于任务调度**,接口自动化80%本地编写,20%交由平台管理。 如果使用pytest做接口自动化,那么个人认为最好的编写工具是PyCharm,任何低代码测试平台都无法取代。当然不会代码,或者不使用pytest,那低代码测试平台,或者yaml,甚至excel写自动化用例,都是可以 阅读全文
posted @ 2023-07-20 09:35 测试开发刚哥 阅读(163) 评论(1) 推荐(1)
摘要: # Container Images ``` FROM eclipse-temurin:17-jre as builder WORKDIR application ARG JAR_FILE=target/*.jar COPY ${JAR_FILE} application.jar RUN java 阅读全文
posted @ 2023-07-17 22:48 测试开发刚哥 阅读(34) 评论(0) 推荐(0)
摘要: # Caching Spring Boot auto-configures the cache infrastructure as long as caching support is enabled by using the `@EnableCaching` annotation. ```java 阅读全文
posted @ 2023-07-17 22:48 测试开发刚哥 阅读(128) 评论(0) 推荐(0)
摘要: The Spring Framework provides extensive support for integrating with messaging systems, from simplified use of the JMS API using `JmsTemplate` to a co 阅读全文
posted @ 2023-07-17 22:48 测试开发刚哥 阅读(23) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 26 下一页