验证服务器和客户端上的类是否相同

发布于 2024-10-20 04:54:08 字数 51 浏览 2 评论 0原文

在Java RMI客户端/服务器应用程序中,有没有办法验证服务器和客户端上的类是否相同?

In a Java RMI Client/Server application, is there a way to verify that the classes on the server and client are identical?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染柒℉ 2024-10-27 04:54:08

使用代码库功能,以便它们来自代码库服务器的单一来源。

Use the codebase feature so that they are single-sourced from the codebase server.

﹏雨一样淡蓝的深情 2024-10-27 04:54:08

好吧,您始终可以访问构成类的字节(通过 getResourceAsStream),因此如果您确实需要,您可以抓取客户端上的字节并将它们发送到服务器并进行比较。

不知道为什么你需要达到这个程度,通常你关心的是序列化格式,它是由可序列化类中的serialVersionUID值验证的。

Well, you always have access to the bytes that make up the class (thru getResourceAsStream), and so if you really needed to, you can grab the bytes on the client and send them to the server, and compare.

Not sure why you need to go to this extent, normally all you care about is the serialization formats which is verified by the serialVersionUID value in the serializable class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文