2016-06-30 22:21:57 +03:00
|
|
|
# HTTP Server
|
|
|
|
|
|
|
|
The HTTP Server is a go-micro.Server. It's a partial implementation which strips out codecs, transports, etc but enables you
|
|
|
|
to create a HTTP Server that could potentially be used for REST based API services.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```go
|
|
|
|
import (
|
2016-06-30 22:24:43 +03:00
|
|
|
"net/http"
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:24:43 +03:00
|
|
|
"github.com/micro/go-micro/server"
|
|
|
|
httpServer "github.com/micro/go-plugins/server/http"
|
2016-06-30 22:21:57 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-06-30 22:23:53 +03:00
|
|
|
srv := httpServer.NewServer(
|
|
|
|
server.Name("helloworld"),
|
|
|
|
)
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
mux := http.NewServeMux()
|
|
|
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Write([]byte(`hello world`))
|
|
|
|
})
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
hd := srv.NewHandler(mux)
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
srv.Handle(hd)
|
2016-06-30 22:21:57 +03:00
|
|
|
srv.Start()
|
|
|
|
srv.Register()
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Or as part of a service
|
|
|
|
|
|
|
|
```go
|
|
|
|
import (
|
2016-06-30 22:24:43 +03:00
|
|
|
"net/http"
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:24:43 +03:00
|
|
|
"github.com/micro/go-micro"
|
|
|
|
"github.com/micro/go-micro/server"
|
|
|
|
httpServer "github.com/micro/go-plugins/server/http"
|
2016-06-30 22:21:57 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-06-30 22:23:53 +03:00
|
|
|
srv := httpServer.NewServer(
|
|
|
|
server.Name("helloworld"),
|
|
|
|
)
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
mux := http.NewServeMux()
|
|
|
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Write([]byte(`hello world`))
|
|
|
|
})
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
hd := srv.NewHandler(mux)
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
srv.Handle(hd)
|
2016-06-30 22:21:57 +03:00
|
|
|
|
2016-06-30 22:23:53 +03:00
|
|
|
service := micro.NewService(
|
|
|
|
micro.Server(srv),
|
|
|
|
)
|
2016-06-30 22:21:57 +03:00
|
|
|
service.Init()
|
2016-06-30 22:23:53 +03:00
|
|
|
service.Run()
|
2016-06-30 22:21:57 +03:00
|
|
|
}
|
|
|
|
```
|