gpt4 book ai didi

java - 如何将 ObjectDecoder 添加到 netty 服务器

转载 作者:行者123 更新时间:2023-11-30 06:18:09 27 4
gpt4 key购买 nike

服务器代码来自netty QOTM (Quote Of The Moment) example :

package net.bounceme.dur.netty;

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioDatagramChannel;
import java.util.logging.Logger;

public final class Server {

private static final Logger log = Logger.getLogger(Server.class.getName());

public static void main(String[] args) throws InterruptedException {
MyProps p = new MyProps();
int port = p.getServerPort();
new Server().pingPong(port);
}

private void pingPong(int port) throws InterruptedException {
log.fine("which handler?");
EventLoopGroup group = new NioEventLoopGroup();
try {
Bootstrap b = new Bootstrap();
b.group(group)
.channel(NioDatagramChannel.class)
.option(ChannelOption.SO_BROADCAST, true)
.handler(new ServerDatagramHandler());
b.bind(port).sync().channel().closeFuture().await();
} finally {
group.shutdownGracefully();
}
}
}

这是 DatagramPacket 处理程序:

package net.bounceme.dur.netty;

import io.netty.buffer.Unpooled;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.socket.DatagramPacket;
import io.netty.util.CharsetUtil;
import java.util.Random;
import java.util.logging.Logger;

public class ServerDatagramHandler extends SimpleChannelInboundHandler<DatagramPacket> {

private static final Logger log = Logger.getLogger(ServerDatagramHandler.class.getName());
private static final Random random = new Random();

public ServerDatagramHandler() {
log.info("..started..");
}

// Quotes from Mohandas K. Gandhi:
private static final String[] quotes = {
"Where there is love there is life.",
"First they ignore you, then they laugh at you, then they fight you, then you win.",
"Be the change you want to see in the world.",
"The weak can never forgive. Forgiveness is the attribute of the strong.",};

private static String nextQuote() {
int quoteId;
synchronized (random) {
quoteId = random.nextInt(quotes.length);
}
return quotes[quoteId];
}

@Override
public void channelRead0(ChannelHandlerContext ctx, DatagramPacket packet) throws Exception {
System.err.println(packet);
if ("QOTM?".equals(packet.content().toString(CharsetUtil.UTF_8))) {
ctx.write(new DatagramPacket(
Unpooled.copiedBuffer("QOTM: " + nextQuote(), CharsetUtil.UTF_8), packet.sender()));
}
}

@Override
public void channelReadComplete(ChannelHandlerContext ctx) {
ctx.flush();
}

@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
log.severe(cause.toString());
}
}

我想切换到 Quote 处理程序:

package net.bounceme.dur.netty;

import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import java.util.Random;
import java.util.logging.Logger;
import net.bounceme.dur.jdbc.Quote;

public class ServerQuoteHandler extends SimpleChannelInboundHandler<Quote> {

private static final Logger log = Logger.getLogger(ServerQuoteHandler.class.getName());
private static final Random random = new Random();

public ServerQuoteHandler() {
log.info("..started..");
}

// Quotes from Mohandas K. Gandhi:
private static final String[] quotes = {
"Where there is love there is life.",
"First they ignore you, then they laugh at you, then they fight you, then you win.",
"Be the change you want to see in the world.",
"The weak can never forgive. Forgiveness is the attribute of the strong.",};

private static String nextQuote() {
int quoteId;
synchronized (random) {
quoteId = random.nextInt(quotes.length);
}
return quotes[quoteId];
}

@Override
protected void channelRead0(ChannelHandlerContext chc, Quote quote) throws Exception {
log.info(quote.toString());
chc.writeAndFlush(new Quote(nextQuote()));
}

}

就我的目的而言,Quote 只是一个字符串包装器,只有一个字段,toString 返回引号。当然,它实现了Serializable,并且使用了serialVersionUID

当我查看 ping-pong example ,我看不到在服务器上添加 ObjectEncoder 的位置。

A blog有这个片段:

 // Set up the pipeline factory.
bootstrap.setPipelineFactory(new ChannelPipelineFactory() {
public ChannelPipeline getPipeline() throws Exception {
return Channels.pipeline(
new ObjectDecoder(ClassResolvers.cacheDisabled(getClass().getClassLoader())),
new DateHandler()
);
};
});

但是,我如何在 QOTM 服务器中实现它?我正在浏览 Netty in Action ,但还没有找到解释这一点的相关文字。 ObjectEncoderObjectDecoder 都没有出现在书的正文中..?

另见:

How to send an object with Netty?

最佳答案

我像这样添加编码器和解码器来发送各种 POJO:

客户:

        bootstrap.handler(new ChannelInitializer<SocketChannel>() {
@Override
public void initChannel(SocketChannel ch) throws Exception {
ch.pipeline().addLast(new ObjectEncoder());
ch.pipeline().addLast(new ObjectDecoder(ClassResolvers.cacheDisabled(null)));
ch.pipeline().addLast(customHandler1);
ch.pipeline().addLast(customHandler2);
ch.pipeline().addLast(customHandler3);
}
});

服务器:

        bootstrap.option(ChannelOption.SO_REUSEADDR, true);
bootstrap.group(bossGroup, workerGroup).channel(NioServerSocketChannel.class)
.childHandler(new ChannelInitializer<SocketChannel>() {
@Override
public void initChannel(SocketChannel ch) throws Exception {
ch.pipeline().addLast(new ObjectDecoder(ClassResolvers.cacheDisabled(null)));
ch.pipeline().addLast(new ObjectEncoder());
ch.pipeline().addLast(customHandler1);
ch.pipeline().addLast(customHandler2);
ch.pipeline().addLast(customHandler3);
}
});

关于java - 如何将 ObjectDecoder 添加到 netty 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25100813/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com