Skip to content

基于Gin+Gorm+Go-Micro V4 + RabbitMQ+ETDC 构建微服务备忘录

Notifications You must be signed in to change notification settings

734380794/gin-gorm-memo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gin-gorm v2.0版本

Go-Micro V4 + RabbitMQ 构造简单备忘录

项目的主要功能介绍

  • 用户注册登录 ( jwt-go鉴权 )
  • 新增/删除/修改/查询 备忘录

项目主要依赖:

Golang V1.20

  • Gin
  • Gorm
  • mysql
  • go-micro
  • protobuf
  • grpc
  • amqp
  • ini
  • hystrix
  • jwt-go
  • crypto

项目结构

1.gin-gorm-memo 项目总体

micro-todolist/
├── app                   // 各个微服务
│   ├── gateway           // 网关
│   ├── task              // 任务模块微服务
│   └── user              // 用户模块微服务
├── bin                   // 编译后的二进制文件模块
├── config                // 配置文件
├── consts                // 定义的常量
├── doc                   // 接口文档
├── idl                   // protoc文件
│   └── pb                // 放置生成的pb文件
├── logs                  // 放置打印日志模块
├── pkg                   // 各种包
│   ├── ctl               // 用户操作
│   ├── e                 // 统一错误状态码
│   ├── logger            // 日志
│   └── util              // 各种工具、JWT等等..
└── types                 // 定义各种结构体

2.gateway 网关部分

gateway/
├── cmd                   // 启动入口
├── http                  // HTTP请求头
├── handler               // 视图层
├── logs                  // 放置打印日志模块
├── middleware            // 中间件
├── router                // http 路由模块
├── rpc                   // rpc 调用
└── wrappers              // 熔断

3.user && task 用户与任务模块

task/
├── cmd                   // 启动入口
├── service               // 业务服务
├── repository            // 持久层
│    ├── db               // 视图层
│    │    ├── dao         // 对数据库进行操作
│    │    └── model       // 定义数据库的模型
│    └── mq               // 放置 mq
├── script                // 监听 mq 的脚本
└── service               // 服务

config/config.ini文件,直接将 config.ini.example-->config.ini 就可以了 conf/config.ini 文件

[service]
AppMode = debug
HttpPort = :4000

[mysql]
Db = mysql
DbHost = 127.0.0.1
DbPort = 3306
DbUser = root
DbPassWord = root
DbName = micro_todolist

[rabbitmq]
RabbitMQ = amqp
RabbitMQUser = guest
RabbitMQPassWord = guest
RabbitMQHost = localhost
RabbitMQPort = 5672

运行简要说明

  1. 启动环境
make env-up
  1. 在app文件夹下的cmd,执行main.go函数
go run main.go

注意:

  1. 保证rabbitMQ开启状态
  2. 保证etcd开启状态
  3. 依次执行各模块下的main.go文件

如果出错一定要注意打开etcd的keeper查看服务是否注册到etcd中!!

About

基于Gin+Gorm+Go-Micro V4 + RabbitMQ+ETDC 构建微服务备忘录

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages