backend (Go) 개발 5

http JSON

struct 을 JSON string 으로 변환type Book struct {     Title string `json:"title"`     Author string `json:"author"` } // an instance of our Book struct book := Book{Title: "Learning Concurreny in Python", Author: "Elliot Forbes"}byteArray, err := json.Marshal(book) if err != nil {     fmt.Println(err) } fmt.Println(string(byteArray)) struct 과 struct 속의 struct 을 JSON string 으로 변환type Book struct {    ..

backend (Go) 개발 2025.03.08

Build HTTP Server

http-server 폴더생성$ mkdir http-server$ cd http-server 모듈 초기화 $ go mod init http-server  server.go 화일을 생성하여 프로그래밍listenAddr = ":8080"  : 실행하는 서버의 8080 포트를 사용핸들러(http.NewServeMux())를 생성하여 setupHandlers에 건너준뒤 api 별 처리 함수를 등록http.ListenAndServe 로 항시 감시 서브api 요구가 오면 담당 함수에서 처리 빌드$ go build -o server 실행$ ./server 확인$ curl localhost:8080/api    Hello, world! $ curl localhost:8080/healthz    ok

backend (Go) 개발 2025.03.05

환경설정

Go (aka Golang) 소개2009년 google 에 의해 web application과 network server 개발 목적으로 심플 사용편리성을 염두에 두고 개발C++과 같이 컴파일을 통해 실행되므로 빠른 실행속도와 강력한 병렬실행을 지원한다.  개발 OS 환경에 맞게 인스톨 Download and install - The Go Programming LanguageDocumentation Download and install Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: Download..

backend (Go) 개발 2025.03.04