会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
KeepSmiling_me
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
13
下一页
2024年3月27日
docker 使用win11镜像
摘要: version: "3" services: windows: image: dockurr/windows container_name: windows environment: VERSION: "win11" devices: - /dev/kvm cap_add: - NET_ADMIN
阅读全文
posted @ 2024-03-27 17:16 KeepSmiling_me
阅读(155)
评论(0)
推荐(0)
2024年3月26日
MSBuild编译生成exe文件
摘要: msbuild hello_cmake.vcxproj /t:Build /p:Configuration=Release; main.cpp #include <iostream> using namespace std; int main(int argc, char *argv[]) { co
阅读全文
posted @ 2024-03-26 11:32 KeepSmiling_me
阅读(83)
评论(0)
推荐(0)
2024年3月20日
python使用urllib3发送http请求
摘要: # pip install urllib3 import urllib3 # Fetch API data url = "https://api.github.com/users/psf/repos" http = urllib3.PoolManager() response = http.requ
阅读全文
posted @ 2024-03-20 10:03 KeepSmiling_me
阅读(56)
评论(0)
推荐(0)
2024年3月19日
pipeline拉取代码构建上传制品
摘要: pipeline { agent { label 'ubuntu' } stages { stage('拉取代码') { steps { checkout scmGit(branches: [[name: 'main']], extensions: [submodule(depth: 1, pare
阅读全文
posted @ 2024-03-19 14:31 KeepSmiling_me
阅读(55)
评论(0)
推荐(0)
Dockerfile启动springboot jar
摘要: FROM anapsix/alpine-java:8u201b09_server-jre_nashorn RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime RUN mkdir -p /jeecg-demo-cloud WORKDI
阅读全文
posted @ 2024-03-19 09:42 KeepSmiling_me
阅读(48)
评论(0)
推荐(0)
2024年3月14日
shell 发送http请求访问接口
摘要: login_res=`curl -s -X POST "172.26.221.111:8082/api/user/login?username=wk&password=12122 ` echo "调用登录接口返回:$login_res" if [ $(echo "$login_res" | jq -
阅读全文
posted @ 2024-03-14 15:08 KeepSmiling_me
阅读(173)
评论(0)
推荐(0)
2024年3月2日
centos安装docker
摘要: 安装 Docker wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo # yum list docker-ce --showduplicat
阅读全文
posted @ 2024-03-02 13:43 KeepSmiling_me
阅读(34)
评论(0)
推荐(0)
centos安装单机minikube
摘要: 1. Linux 环境 # 关闭防火墙 systemctl stop firewalld && systemctl disable firewalld # 关闭 swap swapoff -a && sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab # 关闭
阅读全文
posted @ 2024-03-02 12:07 KeepSmiling_me
阅读(76)
评论(0)
推荐(0)
2024年1月18日
websocket demo
摘要: 引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 配置文件 @Configuration
阅读全文
posted @ 2024-01-18 15:01 KeepSmiling_me
阅读(32)
评论(0)
推荐(0)
2024年1月5日
java定时任务执行器
摘要: ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor(); 这段代码使用 Java 的 ScheduledExecutorService 接口和 Executors 类来创建一个单线
阅读全文
posted @ 2024-01-05 15:00 KeepSmiling_me
阅读(96)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
13
下一页
公告