go配置管理-Viper的简单使用
此文章只是对Viper库的简单使用,读取本地配置文件(json,yaml....) 其他使用操作可以观看官方文档 配置类 MySQL import ( "fmt" ) // MySQL配置 type mysqlConfig struct { Host string `mapstructure:"host" yaml:"host"` // 主机 Po…
2022-5-15 22:07
|
740
|
|
154 字
|
4 分钟
从0开始搭建GoWeb脚手架
基本框架 Web框架:Gin 数据库:Mysql 配置中心&注册中心:Nacos && 本地配置文件 配置文件读取和监听:viper env配置:env v6 配置类 MySQL import ( "fmt" ) // MySQL配置 type mysqlConfig struct { Host string `mapstr…
2022-5-13 19:15
|
809
|
|
170 字
|
7 分钟
spring cloud function 简单复现
环境: JDK >= 8 spring-cloud-function >= 3.1.x 靶机搭建: wget https://github.com/spring-cloud/spring-cloud-function/archive/refs/tags/v3.1.6.zip unzip v3.1.6.zip cd spring-clou…
2022-3-30 20:44
|
990
|
|
676 字
|
5 分钟
Spring Cloud Gateway漏洞分析
Spring cloud Gateway Spring Cloud Gateway aims to provide a simple, yet effective way to route to APIs and provide cross cutting concerns to them such as: security, monitoring…
2022-3-30 20:02
|
1,129
|
|
1136 字
|
8 分钟
WebIDE-Jetbrains Projector初体验
所需环境: 系统:CentOS7.X Docker 安装jetbrains projector #因为我买了正版 所以这里拉取的专业版IDEA docker pull jetbrains/projector-idea-u 其他IDE命令: docker pull jetbrains/projector-clion docker pull jetbr…
2022-3-21 14:34
|
1,154
|
|
286 字
|
3 分钟
决策树
决策树是一个非常简单的算法,至少其思想是非常简单的。生活中我们经常会使用,看几个例子。 场景1,母亲给女儿介绍男朋友,下面是二人的对话: 女儿:多大年纪了? 母亲:26。 女儿:长的帅不帅? 母亲:挺帅的。 女儿:收入高不? 母亲:不算很高,中等情况。 女儿:是公务员不? 母亲:是,在税务局上班呢。 女儿:那好,我去见见。 女儿通过年龄、长相、收入…
2022-3-18 15:37
|
1,375
|
|
3430 字
|
15 分钟
WebVNC搭建(网页远程控制)
所需环境 Nodejs(版本无要求) Python:3.X websockify :https://github.com/novnc/websockify-js (文档中演示的为Win版本,linux自行下载即可) noVNC : https://github.com/novnc/noVNC utralVNC :https://uvnc.com/d…
2022-3-17 21:14
|
2,911
|
|
704 字
|
8 分钟
SpringBootAdmin+钉钉机器人服务监控
钉钉开发平台-自定义机器人接入文档 看了一下钉钉的文档,可发现通过调用Webhook地址可将告警消息发送到群聊里来实现消息通知的功能 获取调用地址 先创建一个钉钉群,并创建自定义机器人 选择其中一项安全设置,可加强安全性,防止Webhook地址泄密被乱发消息 创建成功,复制Webhook地址,等下需要用到 创建SpringBoot应用 添加yml配…
2022-3-14 18:02
|
712
|
|
614 字
|
16 分钟
Springboot对接支付宝SDK案例
导入Maven依赖 <!-- 支付功能SDK --> <dependency> <groupId>com.alipay.sdk</groupId> <artifactId>alipay-sdk-java</artifactId> <version>4.10.124.…
2022-3-09 17:08
|
579
|
|
553 字
|
21 分钟
企业化自动部署平台搭建03-Jenkins安装
本次自动化部署平台基于jenkins+docker+k8s+gitlab jenkins安装 Docker安装 docker安装(openssh8.4版本会存在执行shell时候杀死衍生进程,解决方法请参考https://blog.csdn.net/weixin_43159975/article/details/112644477 拉取jenkin…
2022-3-01 22:33
|
1,119
|
|
744 字
|
6 分钟