Spring-Boot-Version: 2.1.4.RELEASE Created-By: Apache Maven 3.3.9 Build-Jdk: 1.8.0_74 Main-Class: org.springframework.boot.loader.JarLauncher 内容多出了,Main-Class和Start-Class至此遇到的问题解决了。 二:spring-boot-maven-plugin插件5种goal类型的说明: spring-boot:repackage,最主要包一个goal。...
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (default) on project webapps-api-bid: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find a single main class from the...
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (default) on project webapps-api-bid: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find a single main class from the...
该outputFileNameMapping的功能maven-war-plugin目前不支持。 默认情况下会自动排除 Devtools(您可以使用该excludeDevtools属性控制它)。为了使其与war打包一起工作,spring-boot-devtools必须将依赖项设置为范围optional或与provided范围一起设置。 该插件重写您的清单,特别是它管理Main-Class和Start-Class条目。如果默认值不...
Start-Class属性值为com.ericsson.ramltest.MyApplication。 其中com.ericsson.ramltest.MyApplication类中定义了main()方法,是程序的入口。 通常,Spring Boot Maven plugin会在打包过程中自动为Manifest文件设置Main-Class属性,事实上该属性究竟作用几何,还可以受Spring Boot Maven plugin的配置属性layout控制的,示例如下 ...
我们就需要在 maven 的 pom.xml 文件中指定打包时的 mainClass,具体是在 spring-boot-maven-plugin ...
代码语言:javascript 复制 <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><mainClass>com.xxx.XxxApplication</mainClass></configuration><executions><execution><goals><goal>repackage</goal></goals></execution></executio...
Spring Boot Maven Plugin提供了Spring Boot的Maven支持,允许你打包可执行文件和war文件,并且就地运行。 第一章 目标概述 Spring Boot Plugin有如下目标: 1.spring-boot:run 运行Spring Boot应用 2.spring-boot:repackage 重新打包jar/war包为可执行包 3.spring-boot:start 和spring-boot:stop 管理Spring Boot 应用...
boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><skip>true</skip><...