使用springboot生成war包的流程步骤-kb88凯时官网登录

时间:2024-10-18
阅读:
免费资源网,https://freexyz.cn/

1.生成war包

1.1 更改pom包

打开一个springboot 项目 ,右击项目名从项目管理器打开

使用springboot生成war包的流程步骤

在pom.xml文件中插入以下两个依赖

        
            org.springframework.boot
            spring-boot-devtools
            true
        
 
        
            javax.servlet
            javax.servlet-api
        

使用springboot生成war包的流程步骤

在此依赖处添加一个属性,将tomcat依赖放进来

            
                
                    org.springframework.boot
                    spring-boot-starter-tomcat
                
            

将这个springboot 的web 依赖删除,因为springboot 中的web包括了tomcat

而在上面已经导入了tomcat ,所以需要删除一个

使用springboot生成war包的流程步骤

1.2 编写类

package com.example.demo.util;
 
import com.example.demo.demoapplication;
import org.springframework.boot.builder.springapplicationbuilder;
import org.springframework.boot.web.servlet.support.springbootservletinitializer;
 
public class servletinitializer extends springbootservletinitializer {
    @override
    protected springapplicationbuilder configure(springapplicationbuilder builder) {
        return builder.sources(demoapplication.class);
    }
}

编写完这个类之后,直接启动,这个时候就会发现文件夹中多了两个跟war有关的包

使用springboot生成war包的流程步骤

1.3 将war包使用 tomcat 解压为文件夹

先将war包复制到tomcat的webapps文件夹中

使用springboot生成war包的流程步骤

返回上一级,找到bin文件

使用springboot生成war包的流程步骤

再双击这个文件(tomcat启动器)

使用springboot生成war包的流程步骤

这时候就可以看到,war包已经变成了文件夹,并且可以使用里面的类

使用springboot生成war包的流程步骤

这样war包的创建已经解压就完成了

免费资源网,https://freexyz.cn/
返回顶部
顶部
网站地图