应用程序需要JRE版本

时间:2016-08-02 10:15:11

标签: java version updates launch4j

当我尝试运行我的应用程序(编译后为Java)时,将1.8.0_101更新为.exe后,会显示信息This application requires a Java Runtime Environment 1.8.0_40且应用程序未运行。我使用了launch4j

有人有同样的问题吗?知道为什么在更新后显示Java

pom.xml

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.0</version>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
        <encoding>${project.build.sourceEncoding}</encoding>
        <executable>${env.JAVA_HOME}</executable>
        <compilerArguments>
            <bootclasspath>${env.JAVA_HOME}/jre/lib/rt.jar:${env.JAVA_HOME}/jre/lib/jce.jar</bootclasspath>
        </compilerArguments>
    </configuration>
</plugin>

launch4j插件配置

 <plugin>
        <groupId>com.akathist.maven.plugins.launch4j</groupId>
        <artifactId>launch4j-maven-plugin</artifactId>
        <version>1.5.2</version>
        <executions>
            <execution>
                <id>l4j-gui</id>
                <phase>package</phase>
                <goals>
                    <goal>launch4j</goal>
                </goals>
                <configuration>
                    <headerType>gui</headerType>
                    <outfile>target/App.exe</outfile>
                    <jar>target/App.jar</jar>
                    <priority>high</priority>
                    <errTitle>App</errTitle>
                    <classPath>
                        <mainClass>com.app.Main</mainClass>
                    </classPath>
                    <jre>
                        <minVersion>1.8.0_40</minVersion>
                    </jre>
                    <versionInfo>
                        <productName>App</productName>
                        <internalName>app</internalName>
                        <originalFilename>App.exe</originalFilename>                                    
                    </versionInfo>
                </configuration>
            </execution>
        </executions>
  </plugin>

修改

minVersion更改为1.8.0._101后,它可以正常运行,但我对此不满意,因为当Java的下一个版本(例如1.8.0_102)出现时,我会有改变这个......

1 个答案:

答案 0 :(得分:1)

当jre-version-number超过100时,似乎在旧的launch4j版本中有a bug。所以你必须使用launch4j版本3.9,它应该在launch4j-plugin的1.7.11版本中。 / p>