当前位置: 首页 > 知识库问答 >
问题:

IntelliJ GUI Designer Maven可执行JAR导出

安明亮
2023-03-14

我正在使用IntelliJ IDEA的GUI设计器和Maven编译系统。当我通过这个答案构建可执行的JAR文件时,构建成功。但是,当通过命令java-jar MyApplication启动时,它会抛出一个异常。jar:

    Exception in thread "main" java.awt.IllegalComponentStateException: contentPane cannot be set to null.
            at javax.swing.JRootPane.setContentPane(JRootPane.java:621)
            at javax.swing.JFrame.setContentPane(JFrame.java:698)
...

受影响的代码行如下:

setContentPane(panel);

当从IntelliJ中的源代码运行时,它工作正常,但是Maven似乎无法正确构建JAR文件。毕竟,IntelliJ通过链接到<代码>实现了“魔法”。表单文件保存。java源代码文件从GUI代码中清除。

我还找到了一个可能的解决方案,包括在pom中添加一个特殊的插件。xml文件,该文件似乎支持IntelliJ的GUI设计器。所以我再次运行了mvn clean compile assembly:single,它没有任何错误,但没有任何更改。

如果我执行mvn部署,插件会抛出以下错误:

[ERROR] Failed to execute goal org.codehaus.mojo:ideauidesigner-maven-plugin:1.0-beta-1:javac2 (default) on project MyApplication: Execution default of goal org.codehaus.mojo:ideauidesigner-maven-plugin:1.0-beta-1:javac2 failed: 16257 -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException

这是我的pom。xml:

    <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>groupId</groupId>
    <artifactId>MyApplication</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <!-- Apache Commons Lang -->
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>

        <!-- Jsoup HTML parser -->
        <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>1.8.3</version>
        </dependency>

        <!-- Apache Commons IO -->
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>

        <!-- Apache Commons Validator -->
        <dependency>
            <groupId>commons-validator</groupId>
            <artifactId>commons-validator</artifactId>
            <version>1.4.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>com.example.MyApplication
                            </mainClass>
                        </manifest>
                        <manifestEntries>
                            <Built-By>BullyWiiPlaza</Built-By>
                        </manifestEntries>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

            <!-- IDEA Gui Designer Plugin -->
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>ideauidesigner-maven-plugin</artifactId>
                <version>1.0-beta-1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>javac2</goal>
                        </goals>
                    </execution>
                </executions>

                <configuration>
                    <fork>true</fork>
                    <debug>true</debug>
                    <failOnError>true</failOnError>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

怎么了?如何结合使用Maven和IntelliJ的GUI设计器正确导出可执行的JAR文件?

共有3个答案

葛炯
2023-03-14

我也有同样的问题,但我想我找到了一个更简单的解决方案:

>

  • 在IntelliJ中进入文件-

    • 将UI生成到:Java源代码
    • 启用自动复制窗体运行时类

    将以下依赖项添加到yout maven的pom中。xml:

    <dependency>
        <groupId>com.intellij</groupId>
        <artifactId>forms_rt</artifactId>
        <version>7.0.3</version>
    </dependency>
    

    另外添加到您的pom中。xml一个程序集插件片段,类似于以下示例:

        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <executions>
                        <execution>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                            <configuration>
                                <finalName>testUiClient</finalName>
                                <appendAssemblyId>false</appendAssemblyId>
                                <archive>
                                    <manifest>
                                        <mainClass>
                                            my.personal.MainClass
                                        </mainClass>
                                    </manifest>
                                    <manifestEntries>
                                        <Multi-Release>true</Multi-Release>
                                        <Class-Path>.</Class-Path>
                                    </manifestEntries>
                                </archive>
                                <descriptorRefs>
                                    <descriptorRef>jar-with-dependencies</descriptorRef>
                                </descriptorRefs>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    

    这应该可以做到——至少对我来说是可行的。如果对您也有效,请告诉我:-)

  • 双浩涆
    2023-03-14

    我在使用IntelliJ IDEA 2017.1.5时也遇到了同样的问题,但我能够让它与Maven一起工作。我在这里用更新的插件源代码创建了一个GitHub存储库。

    首先,克隆项目。

    在ideauidesigner maven plugin master文件夹中,运行install intellij libs。sh将IntelliJ库安装到本地maven存储库的脚本

    ./install-intellij-libs.sh <path to your IntelliJ directory>
    

    这里还有一个Windows批处理文件(install intellij libs.bat):

    SET INTELLIJ_HOME=C:\Program Files\JetBrains\IntelliJ IDEA 173.3188.16 REM Edit this to match your path!
    CALL mvn install:install-file -Dfile="%INTELLIJ_HOME%\lib\javac2.jar" -DgroupId=com.intellij -DartifactId=javac2 -Dversion=17.1.5 -Dpackaging=jar
    CALL mvn install:install-file -Dfile="%INTELLIJ_HOME%\lib\asm-all.jar" -DgroupId=com.intellij -DartifactId=asm-all -Dversion=17.1.5 -Dpackaging=jar
    CALL mvn install:install-file -Dfile="%INTELLIJ_HOME%\lib\forms_rt.jar" -DgroupId=com.intellij -DartifactId=forms_rt -Dversion=17.1.5 -Dpackaging=jar
    

    然后通过运行以下命令安装您的新插件:

    mvn install
    

    现在,您已经完成了环境设置。

    在实际项目中,在pom中编辑插件的版本。将xml转换为:

    <version>1.0-beta-2-17.1.5</version>
    

    还添加以下依赖项:

     <dependency>
      <groupId>com.intellij</groupId>
      <artifactId>javac2</artifactId>
      <version>LATEST</version>
    </dependency>
    <dependency>
      <groupId>com.intellij</groupId>
      <artifactId>forms_rt</artifactId>
      <version>LATEST</version>
    </dependency>
    <dependency>
      <groupId>com.intellij</groupId>
      <artifactId>asm-all</artifactId>
      <version>LATEST</version>
    </dependency>
    

    现在,建筑应该与UI设计师表单正常工作。

    吴胜
    2023-03-14

    这是因为Maven不知道如何编译用IntelliJ GUI设计器创建的GUI。这就是为什么您必须显式指示IntelliJ生成它能理解的所有代码,而Maven却不能。

    执行此操作,请转到GUI设计器设置并将生成GUI更改为Java源文件的值。从现在起,IntelliJ将包括负责在类本身中设置UI的所有代码,所有外部工具(如Maven、Eclipse)都将正常工作。

     类似资料:
    • 当我试图将我的项目导出到可执行的。jar文件时,像hibernate.cfg.xml或log4j-properties这样的配置文件不会导出到JAR中。我必须手动将它们添加到存档中。文件位于项目根文件夹中的/target/文件夹中。 如何让Eclipse也导出配置文件?

    • 问题内容: 我在将当前项目提取到可执行jar文件时遇到问题。当我在日食中按下运行按钮时,一切正常,但是当我这样做时 然后启动.jar文件;我唯一得到的是带有灰色画布的窗口。它应该启动我编写的游戏(spaceInvaders)。 这是我上载项目的github的链接。我真的不知道错误在哪里,在哪里看。在我的代码中?在我安装的JRE / JDK中?创建罐子时我做错什么了吗? 请帮忙 -。- 问题答案:

    • 本文向大家介绍Eclipse 导出可执行Java工程/可执行Jar文件(包含第三方Jar包),包括了Eclipse 导出可执行Java工程/可执行Jar文件(包含第三方Jar包)的使用技巧和注意事项,需要的朋友参考一下 Eclipse导出可执行Java工程/可执行Jar文件(包含第三方Jar包) 师兄部署了新的虚拟机,新学期大搞起来!之前由于爬虫代码不稳定,所以一直都是直接用Eclipse运行,然

    • 我在Eclipse中有一个maven项目。在src/main/resources下,我有一个名为“directoryToCopy”的目录,其中包含文件。一旦我运行了我的项目,我想将“directoryToCopy”复制到桌面上的本地目录“localDirec”下。 我用了这个: 这在本地工作正常,但是当我想将其作为可执行jar文件运行时,我会得到NullPointerException。 请问有什

    • 我在Netbeans IDE 8.0.1中编写了一个名为SampleChat的Java GUI程序,并使用“Clean and Build”函数创建了一个jar文件。 我转到Netbeans创建的'dist'目录,双击它生成的jar文件。打开一个cmd窗口,其行如下: 我打算从一个U盘共享程序,所以它是至关重要的,唯一的要求是一个JVM,鼠标,也许一些手指来双击它。 我想出的一个尴尬的解决方案是编

    • 问题内容: 我正在使用的GUI设计器和构建系统。通过此答案构建可执行文件时,构建成功。但是,通过命令启动时会引发异常: 受影响的代码行如下: 当从中运行源代码时,它可以正常运行,但是似乎无法正确构建文件。毕竟,IntelliJ通过链接到文件来保持源代码文件与GUI代码的一致,从而“神奇” 。 我还找到了一种可能的解决方案,其中涉及向文件添加一个特殊的插件,该插件似乎可以在此处启用对GUI设计器的构