使用Maven为Spring-boot Web应用程序生成工作的War文件
我们有一个由Maven管理的spring-
boot应用程序,现在需要使用WAR文件在tomcat中进行部署。在开发过程中,我们使用maven通过以下命令启动嵌入式tomcat:
mvn -D"-classpath %classpath package.path.App" -D"exec.executable=java" process-classes org.codehaus.mojo:exec-maven-plugin:1.2.1:exec
我可以通过运行构建战争文件mvn war:war
,但是如果我尝试部署产生的战争,则会产生错误:
SEVERE: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext
...
Caused by: java.lang.IllegalStateException: No SpringApplication sources have been defined. Either override the configure method or add an @Configuration annotation
我尝试将mainClass
指令添加到maven-war-plugin
的配置中,但无济于事。
回答:
在邓尼的建议下,我设法发动了战争。
基本上,我需要@SpringBootApplication
在扩展类上添加注释SpringBootServletInitializer
,并覆盖其configure
方法。
所以我的代码比较像:
+@SpringBootApplication public class WebAppInitializer extends SpringBootServletInitializer {
+ @Override
+ protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
+ return application.sources(App.class);
+ }
我仍然有一个错误,但是只是在spring开始之后,但是我会在另一个问题中提出这个问题。
以上是 使用Maven为Spring-boot Web应用程序生成工作的War文件 的全部内容, 来源链接: utcz.com/qa/406153.html