Spring Boot 2どのように展開可能なwarバッグを構築しますか?
デフォルトではSpring Bootは埋め込まれたTomcatサーバーを使用していますが、プロジェクトは最終的にjarパッケージとして実行され、各jarパッケージは独立したWebサーバと見なされます。
従来のWeb開発では、WebアプリケーションをwarパッケージにしてWebサーバに配置して実行するのが一般的です。
Spring Bootは従来の展開パターンにも対応しています。
開発環境:IntelliJ IDEA 209.2.2
Spring Bootバージョン:2.18
1、demoというSpring Bootプロジェクトを新たに作成します。
2、pom.xmlファイルを修正する
下の太字部分はコードをつけて、元のbuildノードを注釈して、このプロジェクトは最終的にwar-demoのwarバッグに包装します。
SpringBootServlet Initializerを継承し、父親のconfigre方法を書き換える。テスト用のコントローラを追加します。
プロジェクトのtargetディレクトリに行くと、war-demo.warが生成され、TomcatのwebappsディレクトリにコピーしてTomcatを起動します。
アクセスhttp://localhost:8080/war-demo/ページ出力が見える:test
添付、プロジェクト構造:
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
従来のWeb開発では、WebアプリケーションをwarパッケージにしてWebサーバに配置して実行するのが一般的です。
Spring Bootは従来の展開パターンにも対応しています。
開発環境:IntelliJ IDEA 209.2.2
Spring Bootバージョン:2.18
1、demoというSpring Bootプロジェクトを新たに作成します。
2、pom.xmlファイルを修正する
下の太字部分はコードをつけて、元のbuildノードを注釈して、このプロジェクトは最終的にwar-demoのwarバッグに包装します。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<packaging>war</packaging>
<build>
<finalName>war-demo</finalName>
</build>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- <build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>-->
</project>
3、起動類の方法を修正する。DemoAppleication.javaSpringBootServlet Initializerを継承し、父親のconfigre方法を書き換える。テスト用のコントローラを追加します。
package com.example.demo;
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;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class DemoApplication extends SpringBootServletInitializer {
protected SpringApplicationBuilder configure(SpringApplicationBuilder application){
return application.sources(DemoApplication.class);
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@RequestMapping("/")
public String test(){
return "test";
}
}
4、IDEAのMavenウィンドウのcleanとpackageをクリックしました。プロジェクトのtargetディレクトリに行くと、war-demo.warが生成され、TomcatのwebappsディレクトリにコピーしてTomcatを起動します。
アクセスhttp://localhost:8080/war-demo/ページ出力が見える:test
添付、プロジェクト構造:
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。