为什么我的Swing主线死了?

时间:2017-08-10 14:15:39

标签: java eclipse multithreading swing maven

上午,

我正面临Java的奇怪问题 - Swing。 这是我的主要方法

public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                try {

                    PrincipalWindow windowImportLoadCurve = new PrincipalWindow();
                    JFrame.setDefaultLookAndFeelDecorated(true);
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    setModelViewTable(windowImportLoadCurve);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

从Eclipse IDE(Neon 2.0)内部运行它。它创建了4个线程

Daemon Thread [AWT-Windows] (Running)   
Thread [DestroyJavaVM] (Running)    -> Main
Thread [AWT-Shutdown] (Running) 
Thread [AWT-EventQueue-0] (Running) 

它正常运行并且工作正常,当GUI应用程序完成时,JVM就会关闭。所以我使用Maven Install和外部依赖项生成了一个jar

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>weblogic-client-unpack</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>                              
                                    <outputDirectory>${project.build.directory}/</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                    <execution>
                        <id>jboss-client-unpack</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <outputDirectory>${project.build.directory}/</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>                   
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <id>ingrid-load-generator-package-assembly</id>
                        <phase>install</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <manifest>
                                <mainClass>main.MainGenerator</mainClass>
                            </manifest>
                            <descriptors>
                                <descriptor>src/main/assembly/assembly-bin.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>    

开始使用蝙蝠跑步。同一个应用程序创建相同的4个线程,因此它打开GUI(使用SwingUtility.invokeLater()线程)并继续运行main。但是当GUI实际打开时,它会在没有任何用户操作的情况下立即关闭。

1 个答案:

答案 0 :(得分:1)

我的第一个猜测错了。

尝试使用仅显示您所看到的行为的swing组件创建/发布最小代码示例。

这是一个适合我的例子:

public class Test {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            JFrame jf=new JFrame("Hi");
            jf.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            JF.setSize(500,200);
            jf.setVisible(true);
}});}}

如果这对您不起作用,则与您的环境有关。如果它适合您,请将其用作起点并开始将其转换为更像您的代码,在每次更改后运行测试。当你发现破坏它的变化时,你就得到了答案。