部署Spring Boot應用

原文地址:http://blog.csdn.net/xiaoyu411502/article/details/47865561java

在開發Spring Boot應用的過程當中,Spring Boot直接執行public static void main()函數並啓動一個內嵌的應用服務器(取決於類路徑上的以來是Tomcat仍是jetty)來處理應用請求。對於生產環境,這樣的部署方式一樣有效,同時Spring Boot也支持傳統的部署方式——將war包放入應用服務器中啓動運行。web

內嵌應用服務器

在使用Maven或Gradle構建Spring Boot應用的過程當中,Spring Boot插件提供了巨大的幫助,除了生命各種預約義的依賴,它還可以構建能夠直接運行的jar包——包含了全部的依賴以及內嵌應用服務器。應用的分發也就變得很是簡單,任何人拿到了這個jar包,只須要簡單運行java -jar your.jar就能夠啓動應用,無需任何構建工具、安裝過程以及應用服務器。spring

內嵌應用服務器配置

在生產環境中,應用服務器須要各種配置,Spring Boot自己提供了一種很是簡單的配置機制——application.properties數據庫

server.port=8080 # 監聽端口 server.address= # 綁定的地址 server.session-timeout= #session有效時長 server.context-path= #默認爲/ server.ssl.* #ssl相關配置

Tomcat

默認狀況下,Spring Boot啓動的內嵌容器就是Tomcat,對於Tomcat有幾個很是重要的配置:tomcat

server.tomcat.basedir=/tmp

tomcat的baseDir,日誌、dump等文件都存在於這個目錄中,通常是系統的臨時文件夾/tmp,但也能夠按照本身的需求變動位置。安全

server.tomcat.access-log-pattern= # log pattern of the access log server.tomcat.access-log-enabled=false # is access logging enabled

這兩個配置打開Tomcat的Access日誌,並能夠設置日誌格式。服務器

Jetty

若是你不喜歡Tomcat,Jetty也是一個很是不錯的選擇。使用Jetty的方式也很是簡單——把tomcat依賴從Maven或Gradle中移除,加入Jetty內嵌容器的依賴:session

<dependencies>  <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>  <dependency>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-starter-jetty</artifactId>  </dependency> <dependencies>

Java EE應用服務器

除了內嵌容器的部署模式,Spring Boot也支持將應用部署至已有的Tomcat容器, 或JBoss, WebLogic等傳統Java EE應用服務器。app

以Maven爲例,首先須要將<packaging>jar改爲war,而後取消spring-boot-maven-plugin,而後修改Application.javassh

package demo;  import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.context.web.SpringBootServletInitializer; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;  @Configuration @ComponentScan @EnableAutoConfiguration public class Application extends SpringBootServletInitializer {   public static void main(String[] args) {  SpringApplication.run(applicationClass, args);  }   @Override  protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {  return application.sources(applicationClass);  }   private static Class<Application> applicationClass = Application.class; } 

接下來打包應用,將生成的war包放入應用服務器目錄便可。

使用外部配置文件

在應用程序中有不少配置項,例如數據庫鏈接地址、日誌文件位置、應用服務器配置等等。爲了安全與靈活性,咱們推薦將Spring Boot的配置文件放在生產環境的服務器上,並嚴格控制訪問權限。在運行應用時能夠經過命令行參數指定配置文件:

java -jar location_of_your_jar_file.jar --spring.config.location=location_of_your_config_file.properties

這樣作的好處是:

  • 配置位於生產環境中,數據庫鏈接等私密信息不容易泄露
  • 靈活性強,同一份代碼(包括構建的jar包)能夠應用於不一樣的環境配置(開發、測試、生產)

使用Profile區分環境

在某些狀況下,應用的某些業務邏輯可能須要有不一樣的實現。例如郵件服務,假設EmailService中包含的send(String email)方法向指定地址發送電子郵件,可是咱們僅僅但願在生產環境中才執行真正發送郵件的代碼,而開發環境裏則不發送以避免向用戶發送無心義的垃圾郵件。

咱們能夠藉助Spring的註解@Profile實現這樣的功能,這樣須要定義兩個實現EmailService藉口的類:

@Service @Profile("dev") class DevEmailService implements EmailService {   public void send(String email) {  //Do Nothing  } }  @Service @Profile("prod") class ProdEmailService implements EmailService {   public void send(String email) {  //Real Email Service Logic  } } 

@Profile("dev")代表只有Spring定義的Profile爲dev時纔會實例化DevEmailService這個類。那麼如何設置Profile呢?

在配置文件中指定

application.properties中加入:

spring.profiles.active=dev

經過命令行參數

java -jar app.jar --spring.profiles.active=dev

以服務的形式運行應用

使用java命令運行應用很是簡單,可是一般咱們都是經過ssh命令鏈接到服務器並運行它,一旦ssh鏈接斷開,那麼由它fork的java子進程也就隨之銷燬了。因此咱們必須藉助工具將應用做爲服務運行在服務器上:

Systemd

systemd 是Linux 下的一款系統和服務管理器。能夠爲Spring Boot應用編寫啓動腳本:

[Unit] Description=Spring Boot Application  [Service] ExecStart=/usr/bin/java -jar location_of_jar_file.jar --spring.config.location=location_of_config.properties --spring.profiles.active=profile User=${your expected user}  [Install] WantedBy=multi-user.target

Supervisord

Supervisord是用Python實現的一款很是實用的進程管理工具。能夠爲Spring Boot應用編寫:

[program:app] command=/usr/bin/java -jar location_of_jar_file.jar --spring.config.location=location_of_config.properties --spring.profiles.active=profile user=${your expected user} autostart=true autorestart=true startsecs=10 startretries=3
相關文章
相關標籤/搜索