Specify main class Spring-Boot command line

前端 未结 3 1685
-上瘾入骨i
-上瘾入骨i 2021-02-01 06:11

I use maven plugin to set the main class like this :


org.springframework.boot
spring-boot-maven-p         


        
3条回答
  •  失恋的感觉
    2021-02-01 06:59

    Following command will do the trick:

    java -cp my-app.jar -Dloader.main=myApplicationClass org.springframework.boot.loader.PropertiesLauncher
    

提交回复
热议问题