本文分类:news发布日期:2024/11/22 17:20:18
相关文章
SpringBoot 2 最常用的配置汇总
在 Spring Boot 项目中,有一些重要的配置需要关注,包括全局日期和时间格式的配置以及解决跨域问题的后端跨域配置,基本每个项目都是必须配置的,还有springboot配置文件必然也少不了配置数据库之类的,以下进行汇总列出,…
建站知识
2024/11/22 17:08:18
2023 ICPC 江西省赛K. Split
K. Split
time limit per test: 3 seconds
memory limit per test: 512 megabytes
You are given a positive integer n and a non-increasing sequence ai of length n , satisfying ∀i∈[1,n−1],.
Then, you are given a positive integer m, which represents the tot…
建站知识
2024/10/30 1:50:28
jmeter+ant+jenkins接口自动化测试框架
大致思路:Jmeter可以做接口测试,也能做压力测试,而且是开源软件;Ant是基于Java的构建工具,完成脚本执行并收集结果生成报告,可以跨平台,Jenkins是持续集成工具。将这三者结合起来可以搭建一套We…
建站知识
2024/11/22 17:08:27
docker配置国内镜像
docker服务配置文件加入中国的镜像配置
vim /etc/docker/daemon.json
{"registry-mirrors": ["https://dockerproxy.com","https://hub-mirror.c.163.com","https://mirror.baidubce.com","https://ccr.ccs.tencentyun.com"…
建站知识
2024/11/18 6:10:37
重头开始嵌入式第三十二天(TCP多客户端模型)
1.多路IO
1.select
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h> /* See NOTES */
#include <sys/socket.h>
#include <netinet/in.h>
#include <netine…
建站知识
2024/11/22 4:49:49
SpringBoot2:RESTFUL风格接口开发及源码解读
一、RESTFUL简介
Rest风格支持(使用HTTP请求方式,动词来表示对资源的操作) 以前:/getUser 获取用户 /deleteUser 删除用户 /editUser 修改用户 /saveUser 保存用户 现在: /user GET-获取用户 DELETE-删除用户 PUT-修改…
建站知识
2024/11/10 5:26:30