以下对应 example/web 例子: main.go 代码如下: package main import ( fmt log net/http github.com/micro/go-micro/web ) func helloWorldHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, ` Hello World `) } func main() { service := web.NewService( web.Name(helloworld), ) service.Ha