小编典典

指定主类Spring-Boot命令行

spring-boot

我使用maven插件设置主类,如下所示:

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
    <mainClass>com.myapp.main.MainClass</mainClass>
</configuration>
</plugin>

但是有时候我想在另一个主类上运行我的应用程序。这样做的命令行参数是什么?

java -jar myapp-1.0.jar ...

谢谢


阅读 402

收藏
2020-05-30

共1个答案

小编典典

在Spring Boot中已经有一个启动器了。您需要以此为基础构建jar(通过layout在build
config中设置
)。

2020-05-30