springboot打包(war)部署到tomcat

时间:2021-07-31 09:56:36

Springboot的版本为1.5.2.RELEASE,jdk版本为1.8,tomcat版本为8.5


第一步:

   <packaging>jar</packaging>

   改为

   <packaging>war</packaging>

springboot打包(war)部署到tomcat

第二步:

添加依赖

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


第三步:

添加maven插件

   <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <dependencies>
                    <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>springloaded</artifactId>
                        <version>1.2.6.RELEASE</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>


第四步:

    命令打包:clean package

springboot打包(war)部署到tomcat