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

roejwanj  于 2023-01-19  发布在  Java
关注(0)|答案(3)|浏览(260)

JDK/12 EarlyAccess Build 10中,JEP-325开关表达式已作为预览功能集成到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
}

Preview Language and VM Features JEP-12已经详细说明了如何使用javacjava在编译和运行时启用某个特性。
如何使用Maven来试用这个特性?

jdg4fx2g

jdg4fx2g1#

步骤1

我们可以使用以下maven配置来编译使用--enable-preview--release 12+(例如131415)参数的代码。

<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上,我的~/.mavenrc文件被配置为将java 13标记为为为maven配置的默认java。

第二步

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

mvn clean verify

步骤3

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

java --enable-preview -jar target/forty-bits-of-java-1.0.0-SNAPSHOT.jar
  • 最后一个参数是maven构建的jar的路径。*

这将生成如下所示的输出:

(屏幕截图来自上一次执行。)

  • 一个月一次 *
    • 编辑**:从不需要的调试会话中学习,请按以下格式使用参数:
<compilerArgs>
    <arg>--enable-preview</arg>
</compilerArgs>

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

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

sd2nnvve2#

要启用预览功能,必须在compilerArgs下的pom.xml中定义--enable-preview
下面我将介绍如何使用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>
ttcibm8c

ttcibm8c3#

从Maven编译器插件3.10.1版开始,有一个专用参数用于启用预览功能:
<enablePreview>
设置为true可启用Java编译器的预览语言功能

      • 类型:**boolean
      • 开始日期:**一月二日
      • 必需:**No
      • 用户属性:**maven.compiler.enablePreview
      • 默认值:**false

示例:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.10.1</version>
    <configuration>
        <release>${java.version}</release>
        <enablePreview>true</enablePreview>
    </configuration>
</plugin>

注意,对于Surefire(和Failsafe),没有这样的参数,您必须使用<argLine>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.22.2</version>
    <configuration>
        <argLine>--enable-preview</argLine>
    </configuration>
</plugin>

相关问题