验证服务器和客户端上的类是否相同
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用代码库功能,以便它们来自代码库服务器的单一来源。
Use the codebase feature so that they are single-sourced from the codebase server.
好吧,您始终可以访问构成类的字节(通过 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.