摘要: scan goto scan是rows中有值的话继续读取 阅读全文
posted @ 2021-02-12 22:54 动力起点 阅读(347) 评论(0) 推荐(0)
摘要: 数据源1到2,t_order表1到2# 指定t_order表的数据分布情况,配置数据节点 spring.shardingsphere.sharding.tables.t_order.actual‐data‐nodes = m$->{1..2}.t_order_$‐>{1..2} 阅读全文
posted @ 2021-02-10 13:37 动力起点 阅读(371) 评论(0) 推荐(0)
摘要: import lombok.Data; import java.util.ArrayList; import java.util.List; /** * @author huQi * @email * @data 2021/2/9 17:46 */ public class test { publi 阅读全文
posted @ 2021-02-10 09:14 动力起点 阅读(1006) 评论(0) 推荐(0)
摘要: 使用gin提供的玩意`json:"别名"` package Module type ProdModel struct { ProdID int `json:"pId"` ProdName string `json:"pName"` } 阅读全文
posted @ 2021-02-09 14:42 动力起点 阅读(109) 评论(0) 推荐(0)
摘要: 1.服务提供者 // 数据模型 type ProdsRequest struct { Size int `form:"size"`} import ( "github.com/gin-gonic/gin" "github.com/micro/go-micro/registry" "github.co 阅读全文
posted @ 2021-02-09 11:38 动力起点 阅读(170) 评论(0) 推荐(0)
摘要: 下载插件 go get github.com/micro/go-plugins 导包 myhttp"github.com/micro/go-plugins/client/http"1.注册服务 import ( "github.com/gin-gonic/gin" "github.com/micro 阅读全文
posted @ 2021-02-08 16:46 动力起点 阅读(137) 评论(0) 推荐(0)
摘要: import ( "fmt" "github.com/micro/go-micro/client/selector" "github.com/micro/go-micro/registry" "github.com/micro/go-plugins/registry/consul" "io/iout 阅读全文
posted @ 2021-02-08 15:24 动力起点 阅读(86) 评论(0) 推荐(0)
摘要: 1.服务注册 import ( "github.com/gin-gonic/gin" "github.com/micro/go-micro/registry" "github.com/micro/go-micro/web" "github.com/micro/go-plugins/registry/ 阅读全文
posted @ 2021-02-08 14:47 动力起点 阅读(302) 评论(0) 推荐(0)
摘要: windows在gitbash中输入,linux直接项目目录输入 go run *.go 阅读全文
posted @ 2021-02-08 14:32 动力起点 阅读(492) 评论(0) 推荐(0)
摘要: package main import "strconv" type ProdModel struct { ProdID int ProdName string } func NewProd(id int,pName string) *ProdModel{ // 结构体变量声明方式1 /* var 阅读全文
posted @ 2021-02-08 14:22 动力起点 阅读(79) 评论(0) 推荐(0)