1.3. 프로그램언어 고(Go)의 사용 분야
프로그램언어 고(Go)에서의 웹 서버 개발 package main import ( “net/http” ) func handler(w http.ResponseWriter, r *http.Request) { w.Write([]byte(“Hello World!”)) } func main() { http.HandleFunc(“/”, handler) http.ListenAndServe(“:8080″, nil) } 고(Go)언어로 웹 서버를 개발할 때 위의 코드와 같이 http 패키지를 활용합니다. main 함수에서 http.HandleFunc를 사용하여 핸들러 함수를 라우팅합니다. 여기서는 “/” 루트 경로에 handler 함수를 매핑했습니다. handler 함수가 … Read more