Spring Boot CLI打包應用程式


Spring boot CLI提供jar命令以將應用程式打包為jar檔案。測試在Thymeleaf專案章節中建立的範例專案,以演示Spring CLI的打包功能。 按照下面提到的步驟打包範例專案 -

打包應用程式

輸入以下命令 -

D:/worksp/springboot-cli/TestApplication/> spring jar TestApplication.jar *.groovy

輸出
現在,可以看到在TestApplication檔案夾中建立的兩個新檔案。

  • TestApplication.jar - 可執行jar檔案。
  • TestApplication.jar.original - 原始jar檔案。

包含/排除
預設情況下,包含以下目錄及其內容 -

  • public
  • resources
  • static
  • templates
  • META-INF

預設情況下,以下目錄與其內容一起被排除 -

  • repository
  • build
  • target
  • *.jar檔案
  • *.groovy檔案

使用--include,可以包含其他排除的目錄。 使用--exclude,可以排除其他包含的目錄。

執行可執行的Jar

輸入以下命令 -

D:/worksp/springboot-cli/TestApplication/> java -jar TestApplication.jar

在控制台上看到以下輸出 -

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _> | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.0.5.RELEASE)

...
2018-11-08 16:27:28.300  INFO 8360 --- [       runner-0] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2018-11-08 16:27:28.305  INFO 8360 --- [       runner-0] o.s.boot.SpringApplication

在瀏覽器中瀏覽應用程式

基於Spring應用現已準備就緒。 開啟網址為http//localhost:8080/,將看到以下輸出 -

Go to Message

單擊訊息連結,將看到以下輸出 -

Message: Welcome to Tw511.Com!