使用sharding-jdbc-spring-boot-starter4.0.0-RC1,不支持批量插入或更新
1
2
3
4
5<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
<version>4.0.0-RC1</version>
</dependency>报错如下
json与protobuf对象互转
发表于
本文字数:
546
docker常用命令
发表于
本文字数:
196
怎么使用jmeter请求protobuf参数接口
发表于
本文字数:
1.6k
步骤
将proto文件转换为二进制文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16private static AiQiYV215Rta.RTARequest_2_0 request_2_0;
static {
request_2_0 = AiQiYV215Rta.RTARequest_2_0.newBuilder()
.setOaid("7b6798e89994056e89c1797e6a52700c")
.setImeiMd5("868619039737877")
.setOpenUdid("ba9680df551f6de824d5aa2e61d97e5b")
.setIdfaMd5("868619039737878")
.setPlatform(32)
.addAdvertiserIds(1245125L)
.build();
}
public static void main(String[] args) {
FileUtil.writeBytes(request_2_0.toByteArray(), "D:\\test\\rta\\AiQiYV215Rta.pb");
}
如何写出难以维护的代码
发表于
本文字数:
536