我如何从项目本身开始启动位于maven模块中的主类?

时间:2019-04-24 05:20:15

标签: java eclipse maven launch

如果我有一个带有maven文件夹的项目,其中一个包含应启动的主类(可以从那里启动),那么我应该如何使Eclipse和Maven启动那个类当我从头文件夹中选择Run as-Java Application

编辑:

maven-exec-plugin无效:

              <plugin>  
                   <groupId>org.codehaus.mojo</groupId>  
                   <artifactId>exec-maven-plugin</artifactId>  
                   <version>1.1.1</version>  
                   <executions>  
                    <execution>  
                     <goals>  
                      <goal>java</goal>  
                     </goals>  
                     <configuration>  
                      <mainClass>use_annotations.UseAnnotationsLaunch</mainClass>  
                     </configuration>  
                    </execution>  
                   </executions>                  </plugin> 

不显示任何错误,但是主项目无法启动use_annotations.UseAnnotationsLaunch.main。我收到“选择不包含主要类型”

注意,Maven编译命令正确调用了maven模块的编译。这是Eclipse和Maven模块的问题。

1 个答案:

答案 0 :(得分:0)

如果我没记错的话,Eclipse和Maven正在使用它们自己的类路径/运行配置,因此您可以使用Eclipse的运行配置,也可以在pom.xml中设置maven-exec-plugin并设置运行配置以调用maven。

如果使用Eclipse的内置“运行”来正确设置类路径可能会更舒适,但是使用Maven运行配置可以确保您要在其他计算机上编译并运行它的项目正确设置。

这是我旧项目中的安装程序,有exec插件和jar-with-dependencies(可执行jar)。请不要介意插件版本...

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.1.1</version>
            <executions>
                <execution>
                    <phase>deploy</phase>
                    <goals>
                        <goal>java</goal>
                    </goals>
                    <configuration>
                        <mainClass>my.old.project.package.gui.MainWindow</mainClass>
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>my.old.project.package.gui.MainWindow</mainClass>
                    </manifest>
                </archive>
                <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>
    </plugins>
</build>