会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
动力起点
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
下一页
2021年2月12日
go查询数据库讲单数据结果绑定结构体
摘要: scan goto scan是rows中有值的话继续读取
阅读全文
posted @ 2021-02-12 22:54 动力起点
阅读(347)
评论(0)
推荐(0)
2021年2月10日
sharding-jdbc分库分表节点路由
摘要: 数据源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)
增强for循环对遍历的集合进行增删改操作会出现并发修改异常
摘要: 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)
2021年2月9日
go语言数据模型改变响应给前端字段名
摘要: 使用gin提供的玩意`json:"别名"` package Module type ProdModel struct { ProdID int `json:"pId"` ProdName string `json:"pName"` }
阅读全文
posted @ 2021-02-09 14:42 动力起点
阅读(109)
评论(0)
推荐(0)
go语言增加参数访问
摘要: 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)
2021年2月8日
go的http插件实现服务消费
摘要: 下载插件 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)
go语言服务消费
摘要: 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)
go的服务注册和服务消费
摘要: 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)
go启动多个go文件的程序
摘要: windows在gitbash中输入,linux直接项目目录输入 go run *.go
阅读全文
posted @ 2021-02-08 14:32 动力起点
阅读(492)
评论(0)
推荐(0)
go语言切片
摘要: 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)
上一页
1
2
3
4
5
6
7
8
9
10
下一页
公告