JDK11+模塊化項目打包

JavaFx打包

開發環境

  • windows10
  • STS: 4.7.2.RELEASE(eclipse2.3.200.v20200604-0540)
  • OpenJDK11.0.9
  • MAVEN3.6.3

準備工做

建立maven項目

<groupId>com.study</groupId>
<artifactId>jfx-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>

編譯配置java

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<version>3.6.2</version>
	<configuration>
		<source>11</source>
		<target>11</target>
		<encoding>UTF-8</encoding>
	</configuration>
</plugin>

項目目錄結構以下:git

項目目錄結構

編碼

啓動類App.javaapache

package com.study.jfx;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class App extends Application {

	public static void main(String[] args) {
		launch(args);
	}

	@Override
	public void start(@SuppressWarnings("exports") Stage primaryStage) throws Exception {
		primaryStage.setTitle("wxCert");
		primaryStage.show();

		Button btn = new Button();
		btn.setText("Say 'Hello World'");
		btn.setOnAction(event -> {
			System.out.println("Hello World!");
		});

		StackPane root = new StackPane();
		root.getChildren().add(btn);
		Scene scene = new Scene(root, 300, 250);
		primaryStage.setScene(scene);
	}

}

模塊化文件windows

module com.study.jfx {
	requires javafx.controls;
	opens com.study.jfx to javafx.controls;
	exports com.study.jfx;
}

模塊化配置的說明:app

  1. 聲明模塊化項目的名稱。
  2. 聲明依賴的模塊,不用重複聲明javafx.base和javafx.graphics。
  3. 給javafx.controls開放本項目的類。
  4. 導出本項目類,啓動項目須要。

maven的依賴庫配置eclipse

<dependencies>
       <dependency>
           <groupId>org.openjfx</groupId>
           <artifactId>javafx-controls</artifactId>
           <version>11.0.2</version>
       </dependency>
    </dependencies>

maven插件配置一:maven

<plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-dependency-plugin</artifactId>
               <version>3.1.2</version>
               <executions>
                   <execution>
                       <id>copy-dependencies</id>
                       <phase>package</phase>
                       <configuration>
                           <outputDirectory>${basedir}/target/lib</outputDirectory>
                           <overWriteReleases>false</overWriteReleases>
                           <overWriteSnapshots>false</overWriteSnapshots>
                           <overWriteIfNewer>true</overWriteIfNewer>
                       </configuration>
                       <goals>
                           <goal>copy-dependencies</goal>
                       </goals>
                   </execution>
               </executions>
           </plugin>

           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-assembly-plugin</artifactId>
               <version>3.3.0</version>
               <configuration>
                   <appendAssemblyId>false</appendAssemblyId>
                   <descriptorRefs>
                       <descriptorRef>jar-with-dependencies</descriptorRef>
                   </descriptorRefs>
                   <archive>
                       <manifest>
                           <mainClass>com.study.jfx.App</mainClass>
                       </manifest>
                   </archive>
               </configuration>
               <executions>
                   <execution>
                       <id>make-assembly</id>
                       <phase>package</phase>
                       <goals>
                           <goal>single</goal>
                       </goals>
                   </execution>
               </executions>
           </plugin>

JavaFx打可執行jar包

使用插件配置一,執行maven命令:clean package,會在target文件夾下生成以下目錄:ide

打包生成的文件結構一

cmd命令啓動項目:模塊化

java --module-path lib --add-modules=javafx.controls,javafx.base,javafx.graphics -jar jfx-demo-0.0.1-SNAPSHOT.jar

JRE定製

maven插件配置二:ui

<plugin>
    <groupId>org.openjfx</groupId>
    <artifactId>javafx-maven-plugin</artifactId>
    <version>0.0.5</version>
    <configuration>
        <mainClass>com.study.jfx.App</mainClass>
    </configuration>
</plugin>

使用JavaFx提供的建立,執行maven命令clean javafx:jlink能夠定製JRE。 固然,使用JDK自身提供的jdeps+jlink來定製更好。

說明

  • 這一配置能夠直接經過執行main方法啓動項目,不須要依賴javafx-maven-plugin的命令clean javafx:run來啓動項目。
  • 先用OpenJDK15使用此配置打包也成功了。
  • 不知道爲何我在一個IDE裏面使用第二個JavaFx環境(單獨的工做空間)會出JVM依賴庫不匹配的異常。
  • 插件版本下降也能成功打包運行。

源碼位置

碼雲jfx-demo

參與貢獻

  1. WangShengQiang
相關文章
相關標籤/搜索