【Tars-go】腾讯微服务框架学习使用02-- http 服务

2 http 服务

官方文档说http这里是在net/http原生包的基础上做了修改。

官方给的案例:

go 复制代码
package main

import (
	"net/http"
	"github.com/TarsCloud/TarsGo/tars"
)

func main() {
	mux := &tars.TarsHttpMux{}
	mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
		w.Write([]byte("Hello tafgo"))
	})

    cfg := tars.GetServerConfig()
	tars.AddHttpServant(mux, cfg.App+"."+cfg.Server+".HttpObj") //Register http server
	tars.Run()
}

可以看到 在初始化了TarsHttpMux, 再将TarsHttpMux 注册到tars框架中作为servant就可以启动http服务。

  1. TarsHttpMux是什么:

    go 复制代码
    // TarsHttpMux is http.ServeMux for tars http server.
    type TarsHttpMux struct {
    	http.ServeMux
    	cfg *TarsHttpConf
    }

    可以看出TarsHttpMux确实就只是对http.ServeMux做了个包装加入了Conf 并加入了上报状态信息、计算耗时等基本服务器功能。

  2. TarsHttpMux 注册到tars框架中作为servant:

    1. tars.AddHttpServant的底层实现函数如下:

    go 复制代码
    // AddHttpServantWithExceptionStatusChecker add http servant handler with exceptionStatusChecker for obj.
    func (a *application) AddHttpServantWithExceptionStatusChecker(mux HttpHandler, obj string, exceptionStatusChecker func(int) bool) {
    	cfg, ok := a.tarsConfig[obj]
    	if !ok {
    		msg := fmt.Sprintf("http servant obj name not found: %s", obj)
    		ReportNotifyInfo(NotifyError, msg)
    		TLOG.Debug(msg)
    		panic(errors.New(msg))
    	}
    	TLOG.Debugf("add http protocol server: %+v", cfg)
    	a.objRunList = append(a.objRunList, obj)
    	addrInfo := strings.SplitN(cfg.Address, ":", 2)
    	var port int64
    	if len(addrInfo) == 2 {
    		var err error
    		port, err = strconv.ParseInt(addrInfo[1], 10, 32)
    		if err != nil {
    			panic(fmt.Errorf("http server listen port: %s parse err: %v", addrInfo[1], err))
    		}
    	}
    	svrCfg := a.ServerConfig()
    	httpConf := &TarsHttpConf{
    		Container:              svrCfg.Container,
    		AppName:                fmt.Sprintf("%s.%s", svrCfg.App, svrCfg.Server),
    		Version:                svrCfg.Version,
    		IP:                     addrInfo[0],
    		Port:                   int32(port),
    		SetId:                  svrCfg.Setdivision,
    		ExceptionStatusChecker: exceptionStatusChecker,
    	}
    	mux.SetConfig(httpConf)
    	s := &http.Server{Addr: cfg.Address, Handler: mux, TLSConfig: cfg.TlsConfig}
    	a.httpSvrs[obj] = s
    }
    1. 简单来说就是将http根据配置实例化-》再注册Sever-》这代码很好理解
  3. 配置文件配置servant

    xml 复制代码
    <tars>
        <application>
            <server>
                <AiGo.backend.HttpObjAdapter>
                    allow
                    endpoint=http -h 127.0.0.1 -p 18080 -t 60000
                    handlegroup=AiGo.backend.HttpObjAdapter
                    maxconns=200000
                    protocol=http
                    queuecap=10000
                    queuetimeout=60000
                    servant=AiGo.backend.HttpObj
                    shmcap=0
                    shmkey=0
                    threads=1
                </AiGo.backend.HttpObjAdapter>
            </server>
        </application>
    </tars>

    可以看出就protocol=http 这里改了,其他的和tars服务没啥区别。

相关推荐
南宫生4 小时前
力扣-图论-17【算法学习day.67】
java·学习·算法·leetcode·图论
sanguine__4 小时前
Web APIs学习 (操作DOM BOM)
学习
Java程序之猿5 小时前
微服务分布式(一、项目初始化)
分布式·微服务·架构
数据的世界016 小时前
.NET开发人员学习书籍推荐
学习·.net
四口鲸鱼爱吃盐6 小时前
CVPR2024 | 通过集成渐近正态分布学习实现强可迁移对抗攻击
学习
Yvemil77 小时前
《开启微服务之旅:Spring Boot Web开发举例》(一)
前端·spring boot·微服务
OopspoO9 小时前
qcow2镜像大小压缩
学习·性能优化
A懿轩A9 小时前
C/C++ 数据结构与算法【栈和队列】 栈+队列详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·栈和队列
居居飒9 小时前
Android学习(四)-Kotlin编程语言-for循环
android·学习·kotlin
kkflash310 小时前
提升专业素养的实用指南
学习·职场和发展