2

我在 Eclipse 中创建了一个 Java 项目,并在我的 Windows PC 上直接从 Eclipse 成功执行了它。现在我必须在 Linux 服务器上运行相同的 java 程序。

我试图将 .class 文件从我的 PC 复制到服务器并运行它,但它不起作用。之后我复制了整个项目并从 shell 运行 javac MyProject.java 并返回以下错误:

RecordImportBatch.java:2: error: package org.apache.commons.io does not exist
import org.apache.commons.io.FileUtils;

...

RecordImportBatch.java:3: error: package org.neo4j.graphdb does not exist
import org.neo4j.graphdb.RelationshipType;

我猜这是因为我没有在编译命令中包含 jar 文件。

这个项目中包含许多 jar 文件,作为一个 Java 新手,到目前为止,我还没有找到从 Shell 编译在 Eclipse 中工作的项目的方法。

有谁知道是否有办法直接从 Eclipse 获取适当的编译命令并将其粘贴到 Shell,还是我必须“手动”包含所有 jar?如果是这种情况,有谁知道如何包含所有 jar,放在与 MyProject.java 位于同一文件夹中的 lib 目录中?

谢谢!

4

3 回答 3

1

如果你只是学习java,这个建议可能会有些挑战,但你最好使用maven来构建你的项目,这需要重新组织你的源文件和目录。然后使用程序集插件创建一个包含所有依赖项的 zip。然后运行您的程序,您只需执行以下操作:

unzip myapp.zip
cd myapp
java -cp "lib/*" com.blah.MyApp

(您可能需要调整 /* 部分的语法,使用单引号或删除引号,具体取决于您的 shell)

这是汇编插件的一个片段(通用......除了版本和遵循约定的路径之外没有任何硬编码)。这在 pom.xml 中:

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.2</version>
    <configuration>
        <descriptors>
            <descriptor>src/main/assembly/distribution.xml</descriptor>
        </descriptors>
        <appendAssemblyId>false</appendAssemblyId>
    </configuration>
    <executions>
        <execution>
            <id>make-assembly</id>
            <!-- this is used for inheritance merges -->
            <phase>package</phase>
            <!-- append to the packaging phase. -->
            <goals>
                <goal>single</goal>
                <!-- goals == mojos -->
            </goals>
        </execution>
    </executions>
</plugin>

这是一个示例程序集文件(相对于 pom.xml,它位于 src/main/assembly/distribution.xml 中):

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"
>
    <id>${artifact.version}</id>
    <formats>
        <format>zip</format>
    </formats>

    <files>
        <file>
            <!-- an example script instead of using "java -cp ..." each time -->
            <source>${project.basedir}/src/main/bin/run.sh</source>
            <outputDirectory>.</outputDirectory>
            <destName>run.sh</destName>
            <fileMode>0754</fileMode>
        </file>
    </files>

    <fileSets>
        <fileSet>
            <directory>${project.basedir}/src/main/resources/</directory>
            <outputDirectory>/res/</outputDirectory>
            <includes>
                <!-- just examples... -->
                <include>*.sql</include>
                <include>*.properties</include>
            </includes>
        </fileSet>
        <fileSet>
            <directory>config/</directory>
            <outputDirectory>/config/</outputDirectory>
        </fileSet>
    </fileSets>

    <dependencySets>
        <dependencySet>
            <outputDirectory>/lib</outputDirectory>
            <excludes>
                <!-- add redundant/useless files here -->
            </excludes>
        </dependencySet>
    </dependencySets>
</assembly>

此外,eclipse 在 gui 中有一个“jar packager”实用程序,但几年前我使用它时发现它不是很好。而且我认为它不处理依赖项,因此您需要使用上面的“-cp”参数,并添加所有 jar,或者自己将它们放入您的 lib 目录中。

还有这个http://fjep.sourceforge.net/但我从未使用过它....我现在在快速查找 eclipse jar 打包器时才找到它。在他的教程中,他的最后一行(显示正在运行)如下所示:

> java -jar demorun_fat.jar
Hello
于 2012-06-05T08:24:00.097 回答
1

如果你需要做的是在你的电脑上用Eclipse编译并运行你的程序并将编译结果传输到Linux机器上,然后使用File -> Export -> Java -> Runnable Jar文件并选择最适合的打包为你。

技术上最简单的方法是使用“将所需的库复制到 jar 旁边的子文件夹中”,但是您需要通过将文件压缩在一起来分发,然后在 Linux 机器上解压缩它们。

于 2012-06-05T09:17:01.667 回答
-1

我强烈建议使用任何类型的构建工具,事实上的标准是AntMaven,但您可以找到几个替代方案。对于较小的项目,它们都非常简单,使用它们也是小菜一碟(注意 Eclipse 也可以为您生成一个基本的 Antbuild.xml文件)。

例如,它可能是运行整个项目的一个命令:

> ant run
Buildfile: build.xml

clean:

compile:
    [mkdir] Created dir: ...
    [javac] Compiling N source file to ...

run:
     [java] Running application...

main:

BUILD SUCCESSFUL
于 2012-06-05T08:52:38.410 回答