Golang으로 아주 간단하게 HTTP 서버 만들기
Go를 이용하여 아주 간단하게 루트(/)를 요청하면 응답이 갈 수 하는 코드 입니다. go-wrapper를 이용하여 구동만 시켜 주면 바로 서버가 됩니다. 1. HandleFunc 이용하기 package main import ( "net/http" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) { w.Write([]byte("Hello World")) }) http.ListenAndServe(":5000", nil) } 2. http.Handle() 이용 package main import ( "net/http" ) func main() { http.Handle("/", new(testHandler))..
Language/Go
2020. 3. 31. 08:58
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Codable
- github
- Java
- ios
- Gradle
- Spring
- intellij
- SWIFT
- git
- docker
- Xcode
- rxswift
- ubuntu
- golang
- Windows
- Linux
- windows10
- tomcat
- enum
- nodejs
- Python
- CentOS
- war
- go
- Kotlin
- android
- centos8
- cocoapods
- php
- MySQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함