EricKIm ac134e7565 240528-0919-Kim | 5 months ago | |
---|---|---|
etc | 8 months ago | |
images | 1 year ago | |
spider | 1 year ago | |
tmp | 1 year ago | |
vendor | 5 months ago | |
README.md | 1 year ago | |
abango.go | 1 year ago | |
config.go | 1 year ago | |
controller.go | 5 months ago | |
go.mod | 5 months ago | |
go.sum | 5 months ago | |
goget_all.sh | 1 year ago | |
kafka.go | 1 year ago | |
memory-db-redis.go | 1 year ago | |
modules.txt | 1 year ago | |
rest-end.go | 1 year ago | |
rest-svc.go | 1 year ago | |
structs.go | 6 months ago |
is a golang web framework which supports Kafka, gRpc and RESTful API at the same time in single/multi thread.
Any of these versions will allow you to import Abango as github.com/dabory/abango which is the recommended way of using abang.
supports REST API powered by Echo framework in go lang Z
gRpc from Google
Echo - the best RESTful API in golang so far
Kafka-Docker
Sarama - Golang library for Kafka written by IBM
Xorm - Simple and strong ORM written in Golang
Python Django, Golang Beego - Inspire to give birth to Abango.
$ go get -u google.golang.org/grpc
$ go get -u github.com/golang/protobuf/protoc-gen-go
$ go get xorm.io/xorm
$ go get github.com/pilu/fresh
$ go get github.com/labstack/echo
$ go get github.com/go-sql-driver/mysql
$ go get github.com/dabory/abango
$ go get github.com/dabory/kafka-docker
$ go get github.com/dabory/svc-abango
$ go get github.com/dabory/end-abango
$ go get github.com/go-xorm/xorm
To run Apache Kafka, use this command in one terminal mode
$ cd $GOPATH/src/
$ git clone https://github.com/dabory/kafka-docker
$ cd $GOPATH/src/kafka-docker
$ docker-compose up
To run service, use this command in another terminal mode
$ cd $GOPATH/src/github.com/dabory/svc-abango
$ vi conf/config_select.json
....... ; specify config.json file which has xxx prefix in file name
$ vi conf/xxx_config.json
....... ; change parameter values linked conf file if necessary
$ fresh
....... ; run service
To run request, use this command in the other terminal mode
$ cd $GOPATH/src/github.com/dabory/end-abango
$ vi conf/config_select.json
....... ; specify config.json file which has xxx prefix in file name
$ vi conf/xxx_config.json
....... ; change parameter and select service api if necessary
$ go run main.go login
....... ; run a request and it returns same value in file ./json-send/login.json
[ReturnStatus: 200 ReturnJsonFile: json-receive/login.json]
[{
"UserId": "admin",
"Password": "admin-password"
}]
It is crucial in Kafka messaging service to syncronize producing messages and acquire return messages from backend as RESTful API and gRpc API do.