Configure go-swagger in Go Project to Generate Swagger Document Configure go-swagger in Go Project to Generate Swagger Document Environment Preparation Execute the command below at the working directory of your go project. 123go get -u github.com/swaggo/swag/cmd 2022-11-11 Go Go Swagger
Backend and Frontend Server Deployment Backend and Frontend Server Deployment Backend Deployment Deployment in the Form of Executable File Java If you take SpringBoot as your backend implementation framework, you can directly use mave 2022-10-23 Deployment Deployment
Postman Interface Testing Tutorial Postman Interface Testing Tutorial We usually use postman to plainly check the correctness of the backend interfaces’ function. However, what could not be ignored is that Postman could also be util 2022-09-29 Testing Testing
Problems Solved in KVM Setup in the Environment of Centos7.0 2003 Problems Solved in KVM Setup in the Environment of Centos7.0 2003 KVM Virtual Machine Installation You might encounter such a problem when you install new virtual machine in the Virtual Machine Mana 2022-09-26 Linux Cloud Computing Linux Virtual Machine Cloud Computing
Using AMap Component in Vue3 Using AMap Component in Vue3 In this article, I’ll introduce how to combine amap component with Vue3 and render amap component with covid data provided with API to create a Chinese covid map. Prec 2022-07-20 Program Web Web
Some Questions in Golang Some Questions in Golang Recording some issues meet recently. There might still have updates afterwards. What does var _ I = (*T)(nil) mean? Function: check if struct T has implemented the interface 2022-06-08 Go Program Go
Realizing Reflection in Golang through ORM Frame Realizing Reflection in Golang through ORM Frame Golang provides a mechanism to update and check the values of variants, a method to call functions of variants and internal operations they support 2022-06-02 Go Program Go
A Brave New Trial A Brave New Trial Just a moment ago, I have repeated such an experience again: Encountering a programing problem and trying to tackle it through retrieving a resolution from Chinese technology commu 2022-05-24 ramble ramble experience
使用Go实现验证码发送服务 使用Go实现验证码发送服务 邮箱服务配置 选择一个邮箱,开启该邮箱的SMTP服务,并生成授权码在后续使用。 Go邮件服务支持包配置 在terminal中运行以下命令安装go邮件服务支持包 1go get github.com/jordan-wright/email Redis服务配置 在terminal中运行以下命令安装go-redis服务支持包 1go get github.com/go 2022-05-23 Go Program Go
Golang接口使用与理解 Golang接口使用与理解 接口类型是对其他类型行为的概括与抽象。通过使用接口,我们可以写出更加灵活和通用的函数,这些函数不需要绑定在一个特定的实现类型上。Go接口的独特支出在于它是隐式实现的。不需要声明一个类型实现了哪些接口,只要提供接口所必须的方法即可。 定义 1234// 定义一个接口type Name interface(){ method()} 接口是一组方法签名 2022-05-12 Go Program Go