Using rmic in netbeans

I wrote rmi server code in netbeans 6.5. How can I use rmic in netbeans 6.5 to create a server_stub class?

+3
source share
4 answers

If you use a remote Spring ( RmiProxyfactoryBean) proxy , you don’t need to create stub classes / skins at all. Spring just does the magic for you backstage. You do not even need to implement an interface Remote!

See documents here

0
source

build.xml, ? Rmic Ant. , netbeans.

0

rmic netbeans. , rmic . ide rmi.

-1

build.xml.

<target name="startRMI" depends="init">
    <exec executable="rmiregistry" dir="${build.classes.dir}">
    </exec>
</target>

→ build.xml → → → startRMI

RMI.

-2

Source: https://habr.com/ru/post/1711641/


All Articles