spring-boot学习:四、spring-boot构建war包部署

现在的项目(特别是互联网项目)很多都是前后端分离,后台专注提供API服务,这种情况下jar包发布是首选,特别是结合jenkins和docker实现自动化部署更加便捷。

但是依然还有很大一部分小项目或内部项目,因为规模、成本和运维人员不足,依然是保持传统的web架构,前端和后台耦合在一起作为一个工程发布,而且这些小项目经常需求变动,特别是页面调整,在jar包部署的情况下,每次一个小的调整都需要重新打包上传发布,而war发布就会简单很多,直接替换(html、css或js)即可。另外,有时候使用外部tomcat,监控、调优或者修改配置灵活度更高,这时也使用war包发布。

很多年轻的程序员一工作就接触的前后端分离项目,认为前后端分离是理所应当,就是行业标配,就会质疑war包部署,认为是老古董,不屑一顾。前后端分离的好处不需要多说,但是存在即合理,系统架构没有最优秀的,只有最合适的。不管怎样,多了解一点没有坏处,至少spring boot官方还给出了构建war包的方案。

1. 启动类继承SpringBootServletInitializer 类,并重写configure 方法

package com.kevin.springbootstudy;

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

@SpringBootApplication
public class SpringBootStudyApplication extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(SpringBootStudyApplication.class);
    }

    public static void main(String[] args) {
        SpringApplication.run(SpringBootStudyApplication.class, args);
    }

}

2. 在pom.xml文件中加入war

3. 将内嵌的Servlet容器(Tomcat)排除


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

完整pom.xml如下:



    4.0.0

    com.kevin
    spring-boot-study
    0.0.1-SNAPSHOT
    spring-boot-study
    Demo project for Spring Boot
    war

    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.6.RELEASE
        
    

    
        1.8
        true
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        

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

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


4. 执行build-dev.bat(mvn clean package),打包成功在target目录会生成一个war文件
spring-boot学习:四、spring-boot构建war包部署_第1张图片

5. 放在tomcat下运行,对war包的名称进行了修改
spring-boot学习:四、spring-boot构建war包部署_第2张图片

6.测试,通过应用名进行访问
http://127.0.0.1:8080/spring-boot-study/hello
{“id”:1,“content”:“Hello, World!”}

http://127.0.0.1:8080/spring-boot-study/hello?name=Tomcat
{“id”:2,“content”:“Hello, Tomcat!”}

参考:
https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/htmlsingle/#howto-create-a-deployable-war-file

你可能感兴趣的:(spring-boot,Spring,Boot,spring-boot,war包)