我有一个在服务器上运行的RMI应用程序。现在我想将外部jar文件添加到现有部署的jar中。
注意:它不是Web应用程序。
例如,这里我提到了jar目录
MyApplication.jar
.classpath有
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/test.jar"/>
<classpathentry kind="lib" path="lib/test1.jar"/>
<classpathentry kind="output" path="classes"/>
</classpath>
现在我想将test2.jar添加到MyApplication.jar中的lib文件夹并更新.classpath文件。
是否可以添加它?