同步获取响应数据

This commit is contained in:
Guoqs
2024-07-31 17:14:41 +08:00
parent eed9a7bc2c
commit 4346e9fc1f
6 changed files with 25 additions and 16 deletions

View File

@@ -113,21 +113,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>1.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
<version>1.8.0</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@@ -1,5 +1,6 @@
package rpc; package rpc;
import com.jsowell.common.util.bean.SerializationUtil;
import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder; import io.netty.handler.codec.ByteToMessageDecoder;

View File

@@ -1,5 +1,6 @@
package rpc; package rpc;
import com.jsowell.common.util.bean.SerializationUtil;
import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder; import io.netty.handler.codec.MessageToByteEncoder;

View File

@@ -213,6 +213,15 @@
<version>1.77</version> <version>1.77</version>
</dependency> </dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
</dependency>
</dependencies> </dependencies>

View File

@@ -1,4 +1,4 @@
package rpc; package com.jsowell.common.util.bean;
import io.protostuff.LinkedBuffer; import io.protostuff.LinkedBuffer;
import io.protostuff.ProtostuffIOUtil; import io.protostuff.ProtostuffIOUtil;

13
pom.xml
View File

@@ -41,6 +41,7 @@
<alipai.sdk.version>4.39.79.ALL</alipai.sdk.version> <alipai.sdk.version>4.39.79.ALL</alipai.sdk.version>
<alipai.easysdk.version>2.2.3</alipai.easysdk.version> <alipai.easysdk.version>2.2.3</alipai.easysdk.version>
<tencent.sdk.version>3.1.87</tencent.sdk.version> <tencent.sdk.version>3.1.87</tencent.sdk.version>
<protostuff.version>1.8.0</protostuff.version>
</properties> </properties>
<!-- 依赖声明 --> <!-- 依赖声明 -->
@@ -323,6 +324,18 @@
<version>${huifu.version}</version> <version>${huifu.version}</version>
</dependency> </dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>${protostuff.version}</version>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
<version>${protostuff.version}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>