일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- centos
- 28015
- mysql
- Jupyter Notebook
- nohup
- ftp
- rethinkdb
- 실행권한
- STF
- create table
- SWIFT
- ssh
- postgres
- PYTHON
- openpyxl
- nGrinder
- nmap
- Materials
- insert
- STF_PortForwarding
- port forwarding
- perfect
- postgresql
- Jupyter
- appium server
- appium
- GoCD
- ubuntu
- sshpass
- kitura
- Today
- Total
목록Golang (42)
don't stop believing
Golang으로 Web App 개발을 공부해 봅시다.첫 번째 Webapp으로 hello world를 찍었다면 이번엔 핸들러 함수를 사용하는 것을 알아보겠습니다.핸들러를 쉽게 설명하자면, Web Server가 어떤 요청을 받았을 때 그것을 처리하도록 하는 것입니다. Go에서 핸들러는 인터페이스입니다. 인터페이스는 ServerHTTP로 명명된 메소드 입니다. 이 메소드에는 두 개의 매개변수를 같는데 첫 번째는 HTTPResponseWriter 인터페이스이고 두번째는 Request struct를 가리키는 포인터입니다.ServeHTTP(w http.ResponseWriter, r *http.Request) 핸들링 요청에 대한 기본 코드는 아래와 같습니다. package main import ( "fmt" "ne..
go로 첫번째 웹 서버를 실행해 보겠습니다.Hello Tongchun! 부터 시작해 봐야죠. go를 설치하셨다면 gopath로 가서 first_webapp이라고 폴더를 만듭니다. 폴더 안에 server.go 파일을 만들고 아래와 같이 추가합니다. package main import ( "fmt" "net/http" ) func handler(writer http.ResponseWriter, request *http.Request) { fmt.Fprintf(writer, "Hello Tongchun, %s!", request.URL.Path[1:]) } func main() { http.HandleFunc("/", handler) http.ListenAndServe(":8080", nil) } 첫 번째 줄..