如果您剛剛瞭解java,這個建議可能會遇到一些挑戰,但是您可以使用maven來構建項目,這需要重新組織源文件和目錄。然後使用assembly插件創建一個包含所有依賴關係的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>
這裏是一個例子組件文件(該/主/組件/ distribution.xml相對於pom.xml的推移在SRC):
<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/,但我從來沒有使用過....我現在只是快速查找日食jar打包機。在他的教程中,他的最後一行(顯示運行它)是這樣的:
> java -jar demorun_fat.jar
Hello
什麼是適當的pom.xml片段是什麼? –
我添加了一個片段,並assembly.xml – Peter