如何將SpringBoot項目打成 war 包並部署到Tomcat

當前環境:Windows

Tomcat版本:tomcat8.5

SpringBoot版本: 2.2.3

1. pom.xml 修改打包方式

  <packaging>war</packaging>

2.加入SpringBoot打包插件(pom.xml)

 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

3. 在打包插件中加入配置SpringBoot的入口類的標簽名

   <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <!--配置springboot入口類-->
                <configuration>
                    <fork>true</fork>
                    <jvmArguments>Dfile.encoding=UTF-8</jvmArguments>
                    <!--配置入口類的標簽名-->
                    <mainClass>com.Application</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>

4.依賴的修改(pom.xml)

因為打war在tomcat部署,我們需要將內嵌的tomcat去掉,加入你的springboot有jsp文件的話還要將tomcat解析jsp的依賴去掉。

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!--打包不參與-->
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <!--打包不參與,也就是打包去掉tomcat-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>

<scope>provided</scope> : 這個scope的意思在當前環境可以使用,但是不參與打包!!!

5. 修改主配置類(用於依賴外部tomcat)

@SpringBootApplication
public class Application extends SpringBootServletInitializer {
 
    @Override  //這個表示使用外部的tomcat容器
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        // 註意這裡要指向原先用main方法執行的啟動類
        return builder.sources(Application.class);
    }
 
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

6. 測試war包

將war包放入tomcat下的webapps下面,我們啟動tomcat:

7. 啟動tomcat

 註意:war包部署的時候,tomcat默認將你的路徑變成你的war的路徑。

訪問我們的測試接口

 成功

註意:war部署的時候 tomcat默認將你的根路徑變成你的war包的名稱

例如 你的war是 test.war
那麼部署的時候訪問接口必須是
http://localhost:8080/test/

8.tomcat訪問配置

直接打包,上傳到服務器的tomcat的webapps下,啟動後自動會解壓,這裡需要註意的一點就是需要修改tomcat配置文件server.xml,添加如下內容:

<Context path="/" docBase="redis_tools-1.0-SNAPSHOT" debug="0" privileged="true"/>

註:redis_tools-1.0-SNAPSHOT設置為包名即可,其他的地方都無需修改,啟動後訪問:
http://127.0.0.1:8080/redis_tools-1.0-SNAPSHOT

到此這篇關於如何將SpringBoot項目 打成 war 包 並 部署到 Tomcat的文章就介紹到這瞭,更多相關springboot打成war包部署tomcat內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: