Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在考虑用 RMI 制作一个应用程序,但我不确定它的局限性。
这个想法是,客户端通过注册表获得一个存根,然后在该存根上调用一个远程方法来获取一个Authenticator对象。它有一个接收用户名和加密密码后登录的方法,它返回一个User对象,系统中每个用户都有一个对象。用户对象具有所有返回存根对象的方法。关键是,可以想象有数十万个远程对象同时运行。RMI 可以处理所有这些对象吗?如何配置它以便在单个服务器端口上访问所有对象?
Authenticator
User