Socket.D 小场景.Rpc 鉴权模式 (v2)
本案在 Rpc 调用模式的基础上增加签权为例演示:
1、接口定义
Rpc 模式借用了 Nami 做客户端定义(Nami 是 Solon 伴生框架,定位为 Rpc 通用客户端)
@NamiClient(name = "demo", path = "/demoe/rpc")
public interface HelloService {
String hello(String name);
}
2、服务端
//启动服务端
public class ServerApp {
public static void main(String[] args) {
//启动Solon容器(SocketD bean&plugin 由solon容器管理)
Solon.start(ServerApp.class, args, app -> app.enableSocketD(true));
}
}
//定义远程服务组件
@Mapping("/demoe/rpc")
@Remoting
public class HelloServiceImpl implements HelloService {
public String hello(String name) {
return "name=" + name;
}
}
//将 Socket.D 监听,转为 Handler 请求(即 Rpc 服务端模式) //这个很关键
@ServerEndpoint("/")
public class ServerListener extends ToHandlerListener {
@Override
public void onOpen(Session session) throws IOException {
//添加签权
if ("1".equals(session.param("token"))) {
System.out.println("签权成功!");
} else {
session.close();
}
}
}
3、客户端
(需要引用:nami.channel.socketd)
//启动客户端
public class ClientApp {
public static void main(String[] args) throws Throwable {
//启动Solon容器(SocketD bean&plugin 由solon容器管理)
Solon.start(ClientApp.class, args);
//[客户端] 调用 [服务端] 的 rpc
//
HelloService rpc = SocketdProxy.create("sd:tcp://localhost:28080?sn=1&token=1", HelloService.class);
if (rpc.auth("1", "1")) {
System.out.println("RPC result: " + rpc.hello("noear"));
}
}
}