芋道Springboot打war包

鱼鱼寡欢發表於2024-12-09

war 包是 Sun 提出的一種 web 應用程式格式。它與 jar 類似,是很多檔案的壓縮包。war 包中的檔案按照一定目錄結構來組織。

1. 修改依賴

在pom中需要將springboot-web自帶的tomcat去除,然後引入一個tomcat依賴,並且將打包格式修改為war

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-web</artifactId>
	<!--            <exclusions>-->
	<!--                <exclusion>-->
	<!--                    <groupId>org.springframework.boot</groupId>-->
	<!--                    <artifactId>spring-boot-starter-tomcat</artifactId>-->
	<!--                </exclusion>-->
	<!--            </exclusions>-->
</dependency>
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-tomcat</artifactId>
	<scope>provided</scope>
</dependency>

2. 新增配置

# tomcat配置
spring:
  boot:
    admin:
      client:
        instance:
          service-base-url: http://127.0.0.1:tomcat埠/填tomcatApp的名稱/

3. 新增啟動器

import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;

public class WebAppInitializer extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(專案的啟動類.class);
    }
}
}

相關文章