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

溫馨提示×

溫馨提示×

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

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

springboot有多少種啟動方式

發布時間:2022-03-01 09:10:38 來源:億速云 閱讀:193 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“springboot有多少種啟動方式”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“springboot有多少種啟動方式”這篇文章吧。

環境準備

創建工程

springboot有多少種啟動方式

pom.xml內容

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
 
	<groupId>cn.tx.springboot</groupId>
	<artifactId>tx_demo2</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>
 
	<name>tx_demo2</name>
	<description>Demo project for Spring Boot</description>
 
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.0.3.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
 
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<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-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>

啟動類TxDemo2Application

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

測試類TestController

@RestController
public class TestController {
 
 
    @RequestMapping("/hello")
    public String hello(){
        return "hello";
    }
 
}

第一種:直接main方法啟動TxDemo2Application

springboot有多少種啟動方式

測試訪問

springboot有多少種啟動方式

第二種:通過maven插件來啟動

輸入:

C:\Users\rlsl180506\Desktop\tx_demo2>mvn spring-boot:run

springboot有多少種啟動方式

springboot有多少種啟動方式

測試訪問

springboot有多少種啟動方式

第三種 打jar包來訪問

C:\Users\rlsl180506\Desktop\tx_demo2>mvn clean package

springboot有多少種啟動方式

進入jar所在路徑執行

C:\Users\rlsl180506\Desktop\tx_demo2\target>java -jar tx_demo2-0.0.1-SNAPSHOT.jar

springboot有多少種啟動方式

測試結果:

springboot有多少種啟動方式

第四種 通過docker容器虛擬化運行

首先我要在linux的docker環境下。其次把第三步打好的jar拷貝到linux下的指定目錄,修改名字成tx_demo2.jar

mv tx_demo2-0.0.1-SNAPSHOT.jar tx_demo2.jar

創建DockerFile文件

FROM  openjdk:8-jdk-alpine
ARG  JAR_FILE
COPY  ${JAR_FILE}  app.jar
EXPOSE  10001
ENTRYPOINT  ["java","-jar","/app.jar"]

tx_demo2.jar和DockerFile在同一個路徑構建鏡像

docker build --build-arg JAR_FILE=tx_demo2.jar -t tx_demo2:1.0 .

springboot有多少種啟動方式

啟動容器:

docker run -p 8080:8080 tx_demo2:1.0

springboot有多少種啟動方式

訪問測試

springboot有多少種啟動方式

以上是“springboot有多少種啟動方式”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

虎林市| 吴忠市| 贵德县| 伊宁县| 永泰县| 河池市| 若羌县| 时尚| 内黄县| 台中县| 孝感市| 响水县| 宽甸| 中方县| 太保市| 枞阳县| 龙岩市| 西乡县| 剑阁县| 无为县| 县级市| 乐亭县| 仲巴县| 罗源县| 铅山县| 灵山县| 华蓥市| 科尔| 岳普湖县| 叶城县| 全州县| 小金县| 玉环县| 平泉县| 东乡族自治县| 三原县| 洛南县| 安龙县| 潮州市| 防城港市| 白城市|