使用 Maven 编译并执行 JDK 预览功能

JDK/12 EarlyAccess Build 10 中,JEP-325 Switch Expressions 已作为预览功能集成到 JDK 中。表达式的示例代码(如 JEP 中所示):

Scanner scanner = new Scanner(System.in);
Day day = Day.valueOf(scanner.next());
switch (day) {
    case MONDAY, TUESDAY -> System.out.println("Back to work.") ;
    case WEDNESDAY -> System.out.println("Wait for the end of week...") ;
    case THURSDAY,FRIDAY -> System.out.println("Plan for the weekend?");
    case SATURDAY, SUNDAY -> System.out.println("Enjoy the holiday!");
}

其中,枚举为Day

public enum Day {
    MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
}

预览语言和 VM 功能 JEP-12 已经详细说明了如何在编译和运行时使用 和 启用功能。javacjava

如何使用Maven试用此功能?


答案 1

步骤1

我们可以利用以下 maven 配置来编译代码,使用伴随 + (例如 , , ) 参数。--enable-preview--release 12131415

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.0</version>
            <configuration>
                <release>12</release> <!-- <release>13/14/15</release> -->
                <compilerArgs>--enable-preview</compilerArgs>
            </configuration>
        </plugin>
        <!-- This is just to make sure the class is set as main class to execute from the jar-->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>3.1.0</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                    <configuration>
                        <transformers>
                            <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
                            <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                <mainClass>edu.forty.bits.expression.SwitchExpressions</mainClass>
                            </transformer>
                        </transformers>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

注意:- 我还必须确保在我的MacOS上,我的文件被配置为将java 13标记为为maven配置的默认java。~/.mavenrc

第 2 步

执行 maven 命令以从模块类构建 jar

mvn clean verify 

第 3 步

使用命令行执行在上一步中创建的 jar 的主类,如下所示:

java --enable-preview -jar target/forty-bits-of-java-1.0.0-SNAPSHOT.jar

最后一个参数是 maven 构建的 jar 的路径。

这将按预期方式生成输出,如下所示:

enter image description here

(屏幕截图来自之前的执行。

GitHub 上的源代码


编辑:从不需要的调试会话中学习,使用格式如下的参数:

<compilerArgs>
    <arg>--enable-preview</arg>
</compilerArgs>

原因是,如果您指定两个不同的参数,则在配置验证期间不会失败,并且稍后找到的参数会覆盖有效配置:

<compilerArgs>--enable-preview</compilerArgs>
<compilerArgs>-Xlint:all</compilerArgs>

答案 2

要启用预览功能,您必须在编译器Args下定义--enable-preview in pom.xml

在下面,我提到如何使用java 13启用预览功能。

<build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.8.0</version>
      <configuration>
        <release>13</release>
        <compilerArgs>
          --enable-preview
        </compilerArgs>
      </configuration>
    </plugin>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-surefire-plugin</artifactId>
      <version>3.0.0-M3</version>
      <configuration>
        <argLine>--enable-preview</argLine>
      </configuration>
    </plugin>
  </plugins>
 </build>