chatgpt 告诉我使用<executions>指定多个<execution>配置不同的 mainClass 来实现配置多入口分别构建 jar 包。
以下是示例:
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <id>default-cli</id> <configuration> <mainClass>com.example.MainClass1</mainClass> </configuration> </execution> <execution> <id>second-entry-point</id> <goals> <goal>repackage</goal> </goals> <configuration> <mainClass>com.example.MainClass2</mainClass> <classifier>second</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> --------------- 按照以上配置方式,运行报错“Unable to find a single main class from the following candidates”,原因是项目中有两个 main Class. 而无法实现单一项目分开打包,请教有何解决方法? 谢谢!这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.