Go语言创建HTTP服务器
package main
import (
"fmt"
"log"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World!")
}
func main() {
http.HandleFunc("/hello", helloHandler)
fmt.Println("Starting server on :8080")
if err := http.ListenAndServe(":8080", nil); err != nil {
log.Fatal(err)
}
}
这段代码定义了一个简单的HTTP服务器,它监听本地的8080端口,并对访问"/hello"路径的请求返回"Hello, World!"。代码使用了net/http
标准库中的ListenAndServe
函数来启动服务器,并处理所有的HTTP请求。如果服务器无法启动,会记录错误并退出程序。
评论已关闭