Spring Boot打war包的实例教程
SpringBoot除了可以打可执行jar包外,也支持传统的war包。本文介绍如何使用SpringBoot构建传统war包。
SpringBoot打war包步骤如下:
1、在pom.xml里定义打包类型
war
2、添加SpringBoot启动器(也可通过parent)
org.springframework.boot spring-boot-dependencies 1.5.6.RELEASE pom import
3、添加spring-boot-starter-web依赖
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat
4、添加打包插件
org.springframework.boot spring-boot-maven-plugin
5、主类继承SpringBootServletInitializer
/** *WARapplication */ @SpringBootApplication publicclassWarApplicationextendsSpringBootServletInitializer{ publicstaticvoidmain(String[]args){ SpringApplication.run(WarApplication.class,args); } }
6、执行mvncleanpackage打包
$mvncleanpackage
7、将打好的war包拷贝到容器(如tomcat)运行即可。
这里需要简单说明下:
主应用可以重写SpringBootServletInitializer里面有configure方法,自定义配置SpringBoot。
/** *Configuretheapplication.Normallyallyouwouldneedtodoistoaddsources *(e.g.configclasses)becauseothersettingshavesensibledefaults.Youmight *choose(forinstance)toadddefaultcommandlinearguments,orsetanactive *Springprofile. *@parambuilderabuilderfortheapplicationcontext *@returntheapplicationbuilder *@seeSpringApplicationBuilder */ protectedSpringApplicationBuilderconfigure(SpringApplicationBuilderbuilder){ returnbuilder; }
实例源码下载
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。