일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자소서 너무 오래 걸림
- hive beeline
- 자소서 빨리
- mac hadoop
- 이더리움
- 자소서 시간 줄이기
- Resources are low on NN
- 기업 조사 빨리 하는 법
- mac hadoop 설치
- 카카오 2020 코딩테스트
- 카카오 자물쇠와 열쇠
- code=0)
- is not allowed to impersonate hive (state=08S01
- 백준 18428
- mac hive 3
- Safe mode is ON
- hive beeline 실행
- mac hadoop 설정
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- mac hadoop 3
- hadoop safe mode
- 이더리움 #ethereum
- Failed to connect to localhost:10000
- hive beeline 설정
- 자소서 빨리 쓰는 법
- 도커 교과서
- mac hive
- hadoop safe mode leave
- hive beeline 에러
- 카카오 2020 코테
- Today
- Total
A seeker after truth
net/http 패키지에서 자주 쓰이는 것들 메모 (from 공식 reference) 본문
net/http 패키지에서 자주 쓰이는 것들 메모 (from 공식 reference)
dr.meteor 2019. 11. 27. 15:451. type Request(구조체)
A Request represents an HTTP request received by a server or to be sent by a client. The field semantics differ slightly between client and server usage.
https://golang.org/pkg/net/http/#Request
2. type ResponseWriter(인터페이스)
A ResponseWriter interface is used by an HTTP handler to construct an HTTP response.
https://golang.org/pkg/net/http/#ResponseWriter
3. func HandleFunc
func HandleFunc(pattern string, handler func(ResponseWriter, *Request))
HandleFunc registers the handler function for the given pattern in the DefaultServeMux. The documentation for ServeMux explains how patterns are matched.
https://golang.org/pkg/net/http/#HandleFunc
4. type Server(구조체)
A Server defines parameters for running an HTTP server. The zero value for Server is a valid configuration.
https://golang.org/pkg/net/http/#Server
- 이 구조체 속 첫번째 필드: Addr string // TCP address to listen on, ":http" if empty
5. func ListenAndServe
func (srv *Server) ListenAndServe() error
ListenAndServe listens on the TCP network address srv.Addr and then calls Serve to handle requests on incoming connections. Accepted connections are configured to enable TCP keep-alives. If srv.Addr is blank, ":http" is used. ListenAndServe always returns a non-nil error. After Shutdown or Close, the returned error is ErrServerClosed.
'Programming Language > Golang(Go)' 카테고리의 다른 글
TIL: defer, panic, go 루틴, 채널 (0) | 2019.12.03 |
---|---|
<할 일 목록> 웹앱 작성해보기(3) - 인터페이스(작성하다 양이 너무 많아 포기) (0) | 2019.10.16 |
Golang기본(4) - 구조체, 메서드, 인터페이스 (0) | 2019.10.12 |
Golang 기본(3) - 클로저, 배열, 슬라이스, 맵, 패키지 (0) | 2019.10.12 |
Golang 기본(2) - 반복문, 함수, 익명함수 (0) | 2019.10.12 |