91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Go語言寫一個Http?Server

發布時間:2022-04-26 10:49:33 來源:億速云 閱讀:273 作者:iii 欄目:開發技術

這篇文章主要介紹了如何使用Go語言寫一個Http Server的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何使用Go語言寫一個Http Server文章都會有所收獲,下面我們一起來看看吧。

Http Server 代碼

go.mod:

module goStudy1

go 1.17

main.go:

package main

import (
	"fmt"
	"os"
	"strconv"

	//"github.com/thinkeridea/go-extend/exnet"
	"io"
	"log"
	"net/http"
	"strings"
)

/*
編寫一個 HTTP 服務器,4個功能:

	1,接收客戶端 request,并將 request 中帶的 header 寫入 response header
	2,讀取當前系統的環境變量中的 VERSION 配置,并寫入 response header
	3,Server 端記錄訪問日志包括客戶端 IP,HTTP 返回碼,輸出到 server 端的標準輸出
	4,當訪問 localhost/healthz 時,應返回 200
*/

// Main方法入口
func main() {
	println("環境正常")

	// 功能1
	http.HandleFunc("/requestAndResponse", requestAndResponse)

	// 功能2
	http.HandleFunc("/getVersion", getVersion)

	// 功能3
	http.HandleFunc("/ipAndStatus", ipAndStatus) //注冊接口句柄

	// 功能4
	http.HandleFunc("/healthz", healthz) //注冊接口句柄

	err := http.ListenAndServe(":81", nil) //監聽空句柄,80端口被占用,使用81端口
	if nil != err {
		log.Fatal(err) //顯示錯誤日志
	}
}

// 功能1,接收請求及響應
func requestAndResponse(response http.ResponseWriter, request *http.Request) {
	println("調用requestAndResponse接口")
	headers := request.Header //header是Map類型的數據
	println("傳入的hander:")
	for header := range headers { //value是[]string
		//println("header的key:" + header)
		values := headers[header]
		for index, _ := range values {
			values[index] = strings.TrimSpace(values[index])
			//println("index=" + strconv.Itoa(index))
			//println("header的value:" + values[index])

		}
		//valueString := strings.Join(values, "")
		//println("header的value:" + valueString)
		println(header + "=" + strings.Join(values, ","))        //打印request的header的k=v
		response.Header().Set(header, strings.Join(values, ",")) // 遍歷寫入response的Header
		//println()

	}
	fmt.Fprintln(response, "Header全部數據:", headers)
	io.WriteString(response, "succeed")

}

// 功能2,獲取環境變量的version
func getVersion(response http.ResponseWriter, request *http.Request) {
	println("調用getVersion接口")
	envStr := os.Getenv("VERSION")
	//envStr := os.Getenv("HADOOP_HOME")
	//println("系統環境變量:" + envStr) //可以看到 C:\soft\hadoop-3.3.1	Win10需要重啟電腦才能生效

	response.Header().Set("VERSION", envStr)
	io.WriteString(response, "succeed")

}

// 功能3,輸出IP與返回碼
func ipAndStatus(response http.ResponseWriter, request *http.Request) {
	println("調用ipAndStatus接口")

	form := request.RemoteAddr
	println("Client->ip:port=" + form) //虛擬機是橋接模式。使用postman返回的全部是127.0.0.1	用手機打開網站192.168.1.139:81/ipAndStatus可以看到新IP
	ipStr := strings.Split(form, ":")
	println("Client->ip=" + ipStr[0]) //打印ip

	// 獲取http響應碼
	//response.WriteHeader(301) //手動設置響應碼,默認200

	//response.WriteHeader(http.StatusOK)//由于默認是調用這個,∴返回碼都是這個200【server.go有源碼】
	println("Client->response code=" + strconv.Itoa(http.StatusOK))

	//println("response code->:" + code)

	io.WriteString(response, "succeed")
}

// 功能4,連通性測試接口
func healthz(response http.ResponseWriter, request *http.Request) {
	println("調用healthz接口")
	response.WriteHeader(200) //設置返回碼200
	//response.WriteHeader(http.StatusOK)//默認會調用這個方法,默認就是200【server.go有源碼】
	io.WriteString(response, "succeed")
}

由于80端口被占用,使用了81端口。

調試

由于Linux虛擬機沒有安裝go環境,只有windows有go環境,使用goland開發后,用postman調試。

功能1

如何使用Go語言寫一個Http?Server

POST的request中額外配置了 k2=v1 。Send后可以看到:

如何使用Go語言寫一個Http?Server

Response中出現了手動新增的請求頭及其它默認的請求頭。【原始的response只有3對kv結果,已經遍歷添加成功】。說明成功寫入。

功能2

由于Windows需要重啟才能刷新環境變量,故:

	//envStr := os.Getenv("VERSION")
	envStr := os.Getenv("HADOOP_HOME")

測試時,此處讀取已經存在的環境變量,原理是一致的。

網站:http://127.0.0.1:81/getVersion

如何使用Go語言寫一個Http?Server

說明Go可以讀取到環境變量的值,并且寫入response的headers。

功能3

網站:http://127.0.0.1:81/ipAndStatus

分別用postman、手機請求這個網站【手機請求時需要和PC在同一個路由,將網站IP更換為PC的IP才可以訪問】,goland中顯示:

環境正常
調用getVersion接口
調用ipAndStatus接口
Client->ip:port=127.0.0.1:59595
Client->ip=127.0.0.1
Client->response code=200      
調用ipAndStatus接口
Client->ip:port=192.168.1.138:37548
Client->ip=192.168.1.138
Client->response code=200

顯然讀取到了client的IP。由于server.go中有寫:

	// WriteHeader sends an HTTP response header with the provided
	// status code.
	//
	// If WriteHeader is not called explicitly, the first call to Write
	// will trigger an implicit WriteHeader(http.StatusOK).
	// Thus explicit calls to WriteHeader are mainly used to
	// send error codes.
	//
	// The provided code must be a valid HTTP 1xx-5xx status code.
	// Only one header may be written. Go does not currently
	// support sending user-defined 1xx informational headers,
	// with the exception of 100-continue response header that the
	// Server sends automatically when the Request.Body is read.
	WriteHeader(statusCode int)

默認的響應頭就是取返回值為200,不設置就是按照默認的200來返回,故此處的響應碼為200。

由于響應體引用的請求體并不包含返回碼,如果直接從響應體的請求中拿返回碼【request.Response.StatusCode】,會報內存錯誤及空指針的panic。

功能4

網址:http://127.0.0.1:81/healthz

使用postman調用接口,可以看到:

如何使用Go語言寫一個Http?Server

默認的響應體的響應頭的返回碼就是200。且返回值3個。

可以看出,Go相比Java還是很簡潔的。

關于“如何使用Go語言寫一個Http Server”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“如何使用Go語言寫一個Http Server”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芮城县| 横山县| 佛教| 廊坊市| 阜宁县| 霍山县| 嘉定区| 桦甸市| 丹东市| 师宗县| 永春县| 深泽县| 嘉禾县| 永吉县| 灵璧县| 武宣县| 思南县| 专栏| 锡林郭勒盟| 汕头市| 青海省| 定兴县| 彰化市| 武清区| 报价| 福贡县| 潼南县| 民县| 金乡县| 长寿区| 松滋市| 东光县| 昭平县| 安吉县| 陕西省| 三亚市| 江阴市| 全州县| 临猗县| 六安市| 理塘县|