91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot深入理解之內置web容器及配置的總結

發布時間:2020-10-25 12:46:04 來源:腳本之家 閱讀:236 作者:Super_PF 欄目:編程語言

前言

在學會基本運用SpringBoot同時,想必搭過SSH、SSM等開發框架的小伙伴都有疑惑,SpringBoot在spring的基礎上做了些什么,使得使用SpringBoot搭建開發框架能如此簡單,便捷,快速。本系列文章記錄網羅博客、分析源碼、結合微薄經驗后的總結,以便日后翻閱自省。

正文

使用SpringBoot時,首先引人注意的便是其啟動方式,我們熟知的web項目都是需要部署到服務容器上,例如tomcat、weblogic、widefly(以前叫JBoss),然后啟動web容器真正運行我們的系統。而SpringBoot搭建的系統卻是運行***Application.class中的main方法啟動。這是為什么?

原因是SpringBoot除了高度集成封裝了Spring一系列框架之外,還封裝了web容器,SpringBoot啟動時會根據配置啟動相應的上下文環境,查看EmbeddedServletContainerAutoConfiguration源碼可知(這里SpringBoot啟動過程會單獨總結分析),如下。

@AutoConfigureOrder(-2147483648)
@Configuration
@ConditionalOnWebApplication
@Import({EmbeddedServletContainerAutoConfiguration.BeanPostProcessorsRegistrar.class})
public class EmbeddedServletContainerAutoConfiguration {
  ...
  ...(中間省略部分)
  @Configuration
  @ConditionalOnClass({Servlet.class, Undertow.class, SslClientAuthMode.class})//Undertow配置判斷
  @ConditionalOnMissingBean(
    value = {EmbeddedServletContainerFactory.class},
    search = SearchStrategy.CURRENT
  )
  public static class EmbeddedUndertow {
    public EmbeddedUndertow() {
    }
    @Bean
    public UndertowEmbeddedServletContainerFactory undertowEmbeddedServletContainerFactory() {
      return new UndertowEmbeddedServletContainerFactory();
    }
  }
  @Configuration
  @ConditionalOnClass({Servlet.class, Server.class, Loader.class, WebAppContext.class})//Jetty配置判斷
  @ConditionalOnMissingBean(
    value = {EmbeddedServletContainerFactory.class},
    search = SearchStrategy.CURRENT
  )
  public static class EmbeddedJetty {
    public EmbeddedJetty() {
    }
    @Bean
    public JettyEmbeddedServletContainerFactory jettyEmbeddedServletContainerFactory() {
      return new JettyEmbeddedServletContainerFactory();
    }
  }
  @Configuration
  @ConditionalOnClass({Servlet.class, Tomcat.class})//Tomcat配置判斷,默認為Tomcat
  @ConditionalOnMissingBean(
    value = {EmbeddedServletContainerFactory.class},
    search = SearchStrategy.CURRENT
  )
  public static class EmbeddedTomcat {
    public EmbeddedTomcat() {
    }
    @Bean
    public TomcatEmbeddedServletContainerFactory tomcatEmbeddedServletContainerFactory() {
      return new TomcatEmbeddedServletContainerFactory();
    }
  }
}

該自動配置類表明SpringBoot支持封裝Tomcat、Jetty和Undertow三種web容器,查看spring-boot-starter-web的pom.xml(如下),其默認配置為Tomcat。

<?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>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starters</artifactId>
    <version>1.5.8.RELEASE</version>
  </parent>
  <artifactId>spring-boot-starter-web</artifactId>
  <name>Spring Boot Web Starter</name>
  <description>Starter for building web, including RESTful, applications using Spring
    MVC. Uses Tomcat as the default embedded container</description>
  <url>http://projects.spring.io/spring-boot/</url>
  <organization>
    <name>Pivotal Software, Inc.</name>
    <url>http://www.spring.io</url>
  </organization>
  <properties>
    <main.basedir>${basedir}/../..</main.basedir>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-tomcat</artifactId>
    </dependency>
    ...
    ...

若我們使用其他容器,該如何配置,例如該篇文章Tomcat vs. Jetty vs. Undertow: Comparison of Spring Boot Embedded Servlet Containers詳細比較了SpringBoot中三種容器的性能、穩定性等,結果證明了Undertow在性能和內存使用上是最好的。

顯然,更換內置容器,能提高SpringBoot項目的性能,由于SpringBoot插拔式的模塊設計,配置Undertow只需要兩步,如下。

1.第一步,去除原容器依賴,加入Undertow依賴。

<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-undertow</artifactId>
</dependency>

2.第二步,在application.yml中配置Undertow。

server.undertow.accesslog.dir= # Undertow access log directory.
server.undertow.accesslog.enabled=false # Enable access log.
server.undertow.accesslog.pattern=common # Format pattern for access logs.
server.undertow.accesslog.prefix=access_log. # Log file name prefix.
server.undertow.accesslog.rotate=true # Enable access log rotation.
server.undertow.accesslog.suffix=log # Log file name suffix.
server.undertow.buffer-size= # Size of each buffer in bytes.
server.undertow.buffers-per-region= # Number of buffer per region.
server.undertow.direct-buffers= # Allocate buffers outside the Java heap.
server.undertow.io-threads= # Number of I/O threads to create for the worker.
server.undertow.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
server.undertow.worker-threads= # Number of worker threads.

其余對容器的更多配置,調優等等不作介紹,可以自行百度Undertow。

到這里,肯定會有很多人有疑惑,非得用SpringBoot集成的容器作為運行環境嗎?答案是:NO! SpringBoot同樣提供了像往常一樣打war包部署的解決方案。

1.將項目的啟動類Application.java繼承SpringBootServletInitializer并重寫configure方法。

@SpringBootApplication
public class Application extends SpringBootServletInitializer {
  @Override
  protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
    return application.sources(Application.class);
  }
  public static void main(String[] args) throws Exception {
    SpringApplication.run(Application.class, args);
  }
}

2.在pom.xml文件中,< project >標簽下面添加war包支持的< package >標簽,或者將原標簽值jar改成war。

<packaging>war</packaging>

3.在pom.xml文件中,去除tomcat依賴,或者將其標記為provided(打包時排除),provided方式有一點好處是調試是可以用內置tomcat。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
    <scope>provided</scope>
</dependency>

至此,以上3個配置便可以完成war方式部署,注意war包部署后訪問時需要加上項目名稱。

最后,對比傳統應用容器和springboot容器架構圖。

傳統應用容器:

SpringBoot深入理解之內置web容器及配置的總結

springboot容器:

SpringBoot深入理解之內置web容器及配置的總結

SpringBoot這種設計在微服務架構下有明顯的優點:

  • 可以創建獨立、自啟動的應用容器
  • 不需要構建War包并發布到容器中,構建和維護War包、容器的配置和管理也是需要成本和精力的
  • 通過Maven的定制化標簽,可以快速創建SpringBoot的應用程序
  • 可以最大化地自動化配置Spring,而不需要人工配置各項參數
  • 提供了產品化特點,例如:性能分析、健康檢查和外部化配置
  • 全程沒有XML配置,也不需要代碼生成

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

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

AI

开鲁县| 乾安县| 宝兴县| 喀喇沁旗| 蓬溪县| 多伦县| 盐源县| 会东县| 湖州市| 叶城县| 大余县| 新河县| 襄城县| 淮阳县| 民乐县| 密云县| 衡南县| 略阳县| 红桥区| 阿坝| 鄂托克旗| 东阿县| 花垣县| 桃源县| 永仁县| 仪陇县| 临湘市| 宁国市| 杭锦旗| 庆城县| 富源县| 仙居县| 四平市| 和硕县| 福安市| 三河市| 德江县| 长海县| 彭阳县| 建瓯市| 东乡族自治县|