当前位置:   article > 正文

SpringBoot深入(一)--SpringBoot内置web容器及配置_springboot 内置属性${basedir}

springboot 内置属性${basedir}

版权声明:作者原创,转载请注明出处。 
本系列文章目录地址:http://blog.csdn.net/u011961421/article/details/79416510

前言


在学会基本运用SpringBoot同时,想必搭过SSH、SSM等开发框架的小伙伴都有疑惑,SpringBoot在spring的基础上做了些什么,使得使用SpringBoot搭建开发框架能如此简单,便捷,快速。本系列文章记录博主网罗博客、分析源码、结合微薄经验后的总结,以便日后翻阅自省。


正文


使用SpringBoot时,首先引人注意的便是其启动方式,我们熟知的web项目都是需要部署到服务容器上,例如tomcat、weblogic、widefly(以前叫JBoss),然后启动web容器真正运行我们的系统。而SpringBoot搭建的系统却是运行***Application.class中的main方法启动。这是为什么?

原因是SpringBoot除了高度集成封装了Spring一系列框架之外,还封装了web容器,SpringBoot启动时会根据配置启动相应的上下文环境,查看EmbeddedServletContainerAutoConfiguration源码可知(这里SpringBoot启动过程会单独总结分析),如下。
 

  1. @AutoConfigureOrder(-2147483648)
  2. @Configuration
  3. @ConditionalOnWebApplication
  4. @Import({EmbeddedServletContainerAutoConfiguration.BeanPostProcessorsRegistrar.class})
  5. public class EmbeddedServletContainerAutoConfiguration {
  6. ...
  7. ...(中间省略部分)
  8. @Configuration
  9. @ConditionalOnClass({Servlet.class, Undertow.class, SslClientAuthMode.class})//Undertow配置判断
  10. @ConditionalOnMissingBean(
  11. value = {EmbeddedServletContainerFactory.class},
  12. search = SearchStrategy.CURRENT
  13. )
  14. public static class EmbeddedUndertow {
  15. public EmbeddedUndertow() {
  16. }
  17. @Bean
  18. public UndertowEmbeddedServletContainerFactory undertowEmbeddedServletContainerFactory() {
  19. return new UndertowEmbeddedServletContainerFactory();
  20. }
  21. }
  22. @Configuration
  23. @ConditionalOnClass({Servlet.class, Server.class, Loader.class, WebAppContext.class})//Jetty配置判断
  24. @ConditionalOnMissingBean(
  25. value = {EmbeddedServletContainerFactory.class},
  26. search = SearchStrategy.CURRENT
  27. )
  28. public static class EmbeddedJetty {
  29. public EmbeddedJetty() {
  30. }
  31. @Bean
  32. public JettyEmbeddedServletContainerFactory jettyEmbeddedServletContainerFactory() {
  33. return new JettyEmbeddedServletContainerFactory();
  34. }
  35. }
  36. @Configuration
  37. @ConditionalOnClass({Servlet.class, Tomcat.class})//Tomcat配置判断,默认为Tomcat
  38. @ConditionalOnMissingBean(
  39. value = {EmbeddedServletContainerFactory.class},
  40. search = SearchStrategy.CURRENT
  41. )
  42. public static class EmbeddedTomcat {
  43. public EmbeddedTomcat() {
  44. }
  45. @Bean
  46. public TomcatEmbeddedServletContainerFactory tomcatEmbeddedServletContainerFactory() {
  47. return new TomcatEmbeddedServletContainerFactory();
  48. }
  49. }
  50. }

该自动配置类表明SpringBoot支持封装Tomcat、Jetty和Undertow三种web容器,查看spring-boot-starter-web的pom.xml(如下),其默认配置为Tomcat。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starters</artifactId>
  7. <version>1.5.8.RELEASE</version>
  8. </parent>
  9. <artifactId>spring-boot-starter-web</artifactId>
  10. <name>Spring Boot Web Starter</name>
  11. <description>Starter for building web, including RESTful, applications using Spring
  12. MVC. Uses Tomcat as the default embedded container</description>
  13. <url>http://projects.spring.io/spring-boot/</url>
  14. <organization>
  15. <name>Pivotal Software, Inc.</name>
  16. <url>http://www.spring.io</url>
  17. </organization>
  18. <properties>
  19. <main.basedir>${basedir}/../..</main.basedir>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-tomcat</artifactId>
  29. </dependency>
  30. ...
  31. ...

最后,对比传统应用容器和springboot容器架构图。 
传统应用容器: 

è¿éåå¾çæè¿°

springboot容器: 

è¿éåå¾çæè¿°

SpringBoot这种设计在微服务架构下有明显的优点:

  • 可以创建独立、自启动的应用容器
  • 不需要构建War包并发布到容器中,构建和维护War包、容器的配置和管理也是需要成本和精力的
  • 通过Maven的定制化标签,可以快速创建SpringBoot的应用程序
  • 可以最大化地自动化配置Spring,而不需要人工配置各项参数
  • 提供了产品化特点,例如:性能分析、健康检查和外部化配置
  • 全程没有XML配置,也不需要代码生成

---------------------

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/786856
推荐阅读
相关标签
  

闽ICP备14008679号