2021년 3월 27일 토요일

Android 10 에서 contentProvider 사용시 "Failed to find provider info for ..." 에러 대응

ContentResolver앱에서 Manifest.xml에 와 같이 제공처의 프로바이더 auth를 넣어줘야...

2021년 3월 24일 수요일

[Golang] net/http 패키지를 이용한 웹서버 제작

 net/http 패키지를 이용한 웹서버 제작golang에서 기본적으로 제공하는  net/http패키지를 이용해서 웹서버를 구축할수 있다. 일단 얼마나 간단한지 보자.1.초간단 서버 구동 package mainimport (   "fmt"   "net/http")func main() {   http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {       fmt.Fprintln(w, r.Method, "welcome Go lang")   })   http.ListenAndServe(":8080", nil)}/* or import "log"fun...