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.
有没有这样一种方法可以编写 CORBA IDL 来为 Hashmap 生成存根以存储以下内容?
public static final Map<Date, Integer> map = new HashMap<Date, Integer>();
如果您控制服务器,请通过 RMI/IIOP 在远程接口中定义它,通过 实现它PortableRemoteObject,然后使用它rmic -idl来生成 IDL,但请注意,客户端将需要一个支持按值对象的 ORB。如果客户端是 Java,则直接使用 RMI/IIOP 存根,完全忘记 IDL。
PortableRemoteObject
rmic -idl