中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot打war包的實例教程

發布時間:2020-10-09 16:41:27 來源:腳本之家 閱讀:136 作者:馬軍偉 欄目:編程語言

Spring Boot除了可以打可執行jar包外,也支持傳統的war包。本文介紹如何使用Spring Boot構建傳統war包。

Spring Boot打war包步驟如下:

1、在pom.xml里定義打包類型

<packaging>war</packaging>

2、添加Spring Boot啟動器(也可通過parent)

  <dependencyManagement>
 <dependencies>
  <dependency>
  <!-- Import dependency management from Spring Boot -->
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-dependencies</artifactId>
  <version>1.5.6.RELEASE</version>
  <type>pom</type>
  <scope>import</scope>
  </dependency>
 </dependencies>
 </dependencyManagement>

3、添加spring-boot-starter-web依賴

    <dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
  <exclusions>
  <exclusion>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-tomcat</artifactId>
  </exclusion>
  </exclusions>
 </dependency>

4、添加打包插件

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

5、主類繼承SpringBootServletInitializer

/**
 * WAR application
 */
@SpringBootApplication
public class WarApplication extends SpringBootServletInitializer {
 
 public static void main(String[] args) {
 SpringApplication.run(WarApplication.class, args);
 }
}

6、執行mvn clean package打包

$mvn clean package

7、將打好的war包拷貝到容器(如tomcat)運行即可。

這里需要簡單說明下:

主應用可以重寫SpringBootServletInitializer里面有configure方法,自定義配置Spring Boot。

  /**
 * Configure the application. Normally all you would need to do is to add sources
 * (e.g. config classes) because other settings have sensible defaults. You might
 * choose (for instance) to add default command line arguments, or set an active
 * Spring profile.
 * @param builder a builder for the application context
 * @return the application builder
 * @see SpringApplicationBuilder
 */
 protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
 return builder;
 }

實例源碼下載

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金溪县| 景泰县| 墨玉县| 五原县| 萍乡市| 邢台市| 武强县| 大姚县| 武川县| 云林县| 莱州市| 独山县| 鞍山市| 开江县| 沙田区| 武宁县| 兴山县| 万全县| 宝丰县| 泌阳县| 贞丰县| 墨脱县| 达日县| 台南市| 克拉玛依市| 水富县| 榆林市| 眉山市| 十堰市| 临汾市| 平邑县| 普陀区| 威信县| 江西省| 治多县| 丰城市| 丰镇市| 沅江市| 贵德县| 陈巴尔虎旗| 永仁县|