springboot应用在tomcat中运行
Posted 小鱼吃猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot应用在tomcat中运行相关的知识,希望对你有一定的参考价值。
1.将打包方式改成war,因为如果是java -jar xx.jar
方式运行,一定是jar包
<packaging>war</packaging>
2.添加tomcat的依赖,但是注意作用域(scope)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
3.配置JavaBean,就是要继承SpringBootInitializer类,重写configure方法
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(SpringBootApplication.class);
}
}
4.用tomcat8以上,经验:用tomcat7及以下时,会报如下 错:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'defaultValidator' defined in class path
以上是关于springboot应用在tomcat中运行的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot - Processing of multipart/form-data request failed. Unexpected EOF read on the socket(代码片
如何在 Eclipse Tomcat 中运行 Spring Boot 应用程序?
如何从 springboot 应用程序中分离集成的 tomcat
如何创建 Spring Boot 应用程序并在 Tomcat 中将其作为 .war 运行? [复制]