1. 程式人生 > 程式設計 >如何執行SpringBoot專案的方法

如何執行SpringBoot專案的方法

最近在Ecplise上面寫了一個簡單的Spring Boot的測試專案,Spring Boot裡面是有主函式的:

如何執行SpringBoot專案的方法

我們知道的是在Ecplise上面找到這個主函式然後run as->java Application 就可以了

但是總不能一直不脫離Ecplise,總要出來自己單練的

第一步:我就新建的一個資料夾boottest,然後右鍵匯出整個工程:

如何執行SpringBoot專案的方法

匯出的是jar包,然後我們看網上介紹的SpringBoot啟動的方法,就興致勃勃的去啟動SpringBoot

第二步:將匯出的jar包解壓到我剛才建立的資料夾:

如何執行SpringBoot專案的方法

現在我們的專案就在這個地方,是時候啟動這個專案了

如何啟動:

肯定是用命令行了cmd

第三步:進入自己建立的資料夾,然後執行mvn install

如何執行SpringBoot專案的方法

然後到從資料夾裡面可以看到你的target裡面開啟有一個jar,執行這個jar

如何執行SpringBoot專案的方法

這樣專案就可以正常的啟動了

如何執行SpringBoot專案的方法

然後我們輸入地址可以正常的訪問了

其實在啟動的過程中也不是一帆風順的,期間在執行最後一步:java -jar MySpringBoot-0.0.1-SNAPSHOT.jar的時候遇到的問題是:

Spring Boot:jar中沒有主清單屬性

如何解決的呢:https://www.jb51.net/article/182753.htm

這篇部落格給出了很好的解釋

下面時候我的pom.xml 檔案可以做一個簡單的參考

<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>com.wdg.boot</groupId>
	<artifactId>MySpringBoot</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
			<version>2.0.3.RELEASE</version>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot</artifactId>
			<version>2.0.3.RELEASE</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-thymeleaf -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
			<version>2.0.3.RELEASE</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<version>2.0.3.RELEASE</version>
				<executions>
					<execution>
						<goals>
							<goal>repackage</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	
 
	
</project>

到此這篇關於如何執行SpringBoot專案的方法的文章就介紹到這了,更多相關SpringBoot執行專案內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!