003_go啟動httpServer

來源:互聯網
上載者:User

一、

golang中開發http服務,可以用net/http包提供的功能。net/http包提供了非常全的功能,並且啟動的http服務也非常穩定和高效,完全可以用在生產環境中。

package mainimport (    "fmt"    "log"    "net/http")// w表示response對象,返回給用戶端的內容都在對象裡處理// r表示用戶端請求對象,包含了要求標頭,請求參數等等func index(w http.ResponseWriter, r *http.Request) {    // 往w裡寫入內容,就會在瀏覽器裡輸出    fmt.Fprintf(w, "Hello golang http!")}func main() {    // 設定路由,如果訪問/,則調用index方法    http.HandleFunc("/", index)    // 啟動web服務,監聽9090連接埠    err := http.ListenAndServe(":8000", nil)    if err != nil {        log.Fatal("ListenAndServe: ", err)    }}

運行服務:

go run main.go

在瀏覽器中訪問http://localhost:8000就可以看到Hello golang http!輸出了。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.