0

我是 Java 新手,我不知道这是否是因为我做错了什么。

我的应用程序并不太复杂。它有5个包。其中之一,carlosgoce包具有App带有main方法的类。从那里,我实例化了在 packagePrincipal上扩展的类。JFramegui.Principal

所以,我的App课是这样的:

package carlosgoce;

import javax.swing.JFrame;
import gui.Principal;

public class App {
    public static void main(String[] args) {    
        Principal ventana = new Principal();
        ventana.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        
        ventana.setLocationRelativeTo(null);

        ventana.setVisible(true);                        
    }        
}

顺便说一句,Ventana 的意思是窗户。

所以Principal只是一个JFrame.

当我单击 Netbeans 上的“播放”按钮时,我的应用程序运行良好。当我尝试使用生成的 jar 时,它只是说它无法打开。我检查我的项目属性并检查是否main选择了该类,它是/它是。我在stackoverflow上阅读以禁用“保存时编译”。我做了,但没有帮助。

当我尝试打开 .jar 文件时,它不起作用。我也尝试过清理/构建。

然后我意识到Netbeans自动生成的JFrame类也有一个main方法所以我评论了它(我不知道一个项目是否可以有多个主要方法)。从 Netbeans 启动但从 jar 文件启动时,该应用程序仍在工作。

也许是因为Maven?也是第一次用。我发现这类似于 PHP 上的作曲家。我只是添加了 OpenCSV 依赖项。

我只是不知道下一步该怎么做。一些帮助?

谢谢!

更多信息:这是我当前的 pom.xml 文件:

<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>carlosgoce</groupId>
    <artifactId>distribuir.articulos</artifactId>
    <version>1.02-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>distribuir.articulos</name>
    <url>http://maven.apache.org</url>
    <build>
        <plugins>            
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <archive>
                      <manifest>
                        <addClasspath>true</addClasspath>
                        <mainClass>carlosgoce.principal.App</mainClass>
                      </manifest>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.sf.opencsv</groupId>
            <artifactId>opencsv</artifactId>
            <version>2.0</version>
        </dependency>           
    </dependencies>
</project>

如果我用 Netbeans 的 clean/build 编译它,我会得到这个清单文件:

Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: Apache Maven
Built-By: acliente7
Build-Jdk: 1.7.0_25
Main-Class: carlosgoce.principal.App
Class-Path: opencsv-2.0.jar

看起来不错,但我在 .jar 文件中找不到 opencsv-2.0.jar 并且它不起作用的应用程序。

如果我用 clean 编译我的项目,然后“用依赖项构建”,我得到了这个清单文件:

Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: 23.25-b01 (Oracle Corporation)

所以“类路径:opencsv-2.0.jar”和更多包含我项目信息的行都丢失了。但是 opencsv 在我的 .jar 文件中。

任何提示?

修复了使用命令 mvn clean compile assembly:single 编译应用程序

我不知道我是否必须对这个问题做点什么

4

1 回答 1

1

assembly:single不需要,只需将执行配置添加到您的 pom

 <plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.4</version>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
    </configuration>
    <executions>
      <execution>
        <id>make-assembly</id> 
        <phase>package</phase> 
        <goals>
          <goal>single</goal>
        </goals>
      </execution>
    </executions>
</plugin>
于 2013-11-15T13:22:40.643 回答