【后端Java】SpringBoot体系

13 篇文章 0 订阅
本文详细介绍了SpringBoot2的核心特性,包括依赖管理和自动配置原理。解释了SpringBoot为何被广泛采用,如简化构建配置、内置web服务器、自动配置Spring及第三方库。此外,还探讨了微服务和分布式背景下的SpringBoot应用,以及Web开发的自动配置。内容涵盖从项目初始化、配置文件处理到WebMVC的自动配置和请求参数处理。
摘要由CSDN通过智能技术生成

SpringBoot2核心技术

在这里插入图片描述

一、Spring 与 SpringBoot

1. Spring 能做什么?

  • 微服务开发 Microservices
  • 响应式编程 Reactive
  • 分布式云开发 Cloud
  • web开发 Web apps
  • 无服务开发 Serverless
  • 事件驱动 Event Driver
  • 批处理业务 Batch

2. 为什么要用 SpringBoot ?

  • SpringBoot优点

    • Create stand-alone Spring applications
      • 创建独立Spring应用
    • Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)
      • 内嵌web服务器
    • Provide opinionated ‘starter’ dependencies to simplify your build configuration
      • 自动starter依赖,简化构建配置
    • Automatically configure Spring and 3rd party libraries whenever possible
      • 自动配置Spring以及第三方功能
    • Provide production-ready features such as metrics, health checks, and externalized configuration
      • 提供生产级别的监控、健康检查及外部化配置
    • Absolutely no code generation and no requirement for XML configuration
      • 无代码生成、无需编写XML
  • SpringBoot缺点

    • 人称版本帝,迭代快,需要时刻关注变化
    • 封装太深,内部原理复杂,不容易精通
  • SpringBoot是整合Spring技术栈的一站式框架

  • SpringBoot是简化Spring技术栈的快速开发脚手架

3. 时代背景

  • 微服务
    • 微服务是一种架构风格
    • 一个应用拆分为一组小型服务
    • 每个服务运行在自己的进程内,也就是可独立部署和升级
    • 服务之间使用轻量级HTTP交互
    • 服务围绕业务功能拆分
    • 可以由全自动部署机制独立部署
    • 去中心化,服务自治。服务可以使用不同的语言、不同的存储技术
  • 分布式
    • 远程调用
    • 服务发现
    • 负载均衡
    • 服务容错
    • 配置管理
    • 服务监控
    • 链路追踪
    • 日志管理
    • 任务调度
  • 分布式的解决
    • SpringBoot + SpringCloud
  • 云原生
    • 上云的困难
      • 服务自愈
      • 弹性伸缩
      • 服务隔离
      • 自动化部署
      • 灰度发布
      • 流量治理

二、SpringBoot2 入门

1. 系统要求

  • Java 8 & 兼容java14 .

  • Maven 3.3+

  • idea 2019.1.2

  • maven设置

    <mirrors>
          <mirror>
            <id>nexus-aliyun</id>
            <mirrorOf>central</mirrorOf>
            <name>Nexus aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
          </mirror>
    </mirrors>
     
      <profiles>
             <profile>
                  <id>jdk-1.8</id>
                  <activation>
                    <activeByDefault>true</activeByDefault>
                    <jdk>1.8</jdk>
                  </activation>
                  <properties>
                    <maven.compiler.source>1.8</maven.compiler.source>
                    <maven.compiler.target>1.8</maven.compiler.target>
                    <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
                  </properties>
             </profile>
      </profiles>
    

2. HelloWorld

  • 需求:浏览发送/hello请求,响应 Hello,Spring Boot 2

  • 创建 Maven 工程

  • 引入依赖

    <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.3.4.RELEASE</version>
    </parent>
    
    
    <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    </dependencies>
    
  • 创建主程序

    /**
     * 主程序类
     * @SpringBootApplication:这是一个SpringBoot应用
     */
    @SpringBootApplication
    public class MainApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(MainApplication.class,args);
        }
    }
    
  • 编写业务

    @RestController	// = @ResponseBody	// 给浏览器返回 + @Controller
    public class HelloController {
        @RequestMapping("/hello")	// 映射请求
        public String handle01(){
        	// 给浏览器返回一段话
            return "Hello, Spring Boot 2!";
        }
    }
    
  • 测试

    • 直接运行main方法
  • 简化配置

    • application.properties
      server.port=8888
      
  • 简化部署

     <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
     </build>
    
    • 把项目打成jar包,直接在目标服务器执行即可。
    • 注意点:
      • 取消掉cmd的快速编辑模式

三、自动配置原理

1. Springboot 特点

  • 依赖管理

    • 父项目做依赖管理

      <!-- 依赖管理  -->  
      <parent>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-parent</artifactId>
              <version>2.3.4.RELEASE</version>
      </parent>
      
      <!-- 他的父项目 -->
       <parent>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-dependencies</artifactId>
          <version>2.3.4.RELEASE</version>
        </parent>
      
      <!-- 几乎声明了所有开发中常用的依赖的版本号,自动版本仲裁机制 -->
      
    • 开发导入starter场景启动器

      <!-- 1、见到很多 spring-boot-starter-* : *就某种场景 -->
      <!-- 2、只要引入starter,这个场景的所有常规需要的依赖我们都自动引入 -->
      <!-- 3、SpringBoot所有支持的场景
      https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-starter -->
      <!-- 4、见到的 *-spring-boot-starter: 第三方为我们提供的简化开发的场景启动器。-->
      <!-- 5、所有场景启动器最底层的依赖 -->
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
        <version>2.3.4.RELEASE</version>
        <scope>compile</scope>
      </dependency>
      
    • 无需关注版本号,自动版本仲裁

      • 引入依赖默认都可以不写版本
      • 引入非版本仲裁的jar,要写版本号。
    • 可以修改默认版本号

      <!-- 1、查看spring-boot-dependencies里面规定当前依赖的版本用的 key。-->
      <!-- 2、在当前项目里面重写配置 -->
          <properties>
              <mysql.version>5.1.43</mysql.version>
          </properties>
      
  • 自动配置

    • 自动配好Tomcat

      • 引入Tomcat依赖
      • 配置Tomcat
      <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <version>2.3.4.RELEASE</version>
            <scope>compile</scope>
      </dependency>
      
    • 自动配好SpringMVC

      • 引入SpringMVC全套组件
      • 自动配好SpringMVC常用组件(功能)
    • 自动配好Web常见功能,如:字符编码问题

      • SpringBoot帮我们配置好了所有web开发的常见场景
    • 默认的包结构

      • 主程序所在包及其下面的所有子包里面的组件都会被默认扫描进来
      • 无需以前的包扫描配置
      • 想要改变扫描路径,@SpringBootApplication(scanBasePackages=“com.atguigu”)
        • 或者@ComponentScan 指定扫描路径
          @SpringBootApplication
          等同于
          @SpringBootConfiguration
          @EnableAutoConfiguration
          @ComponentScan("com.alex.boot")
          
    • 各种配置拥有默认值

      • 默认配置最终都是映射到某个类上,如:MultipartProperties
      • 配置文件的值最终会绑定每个类上,这个类会在容器中创建对象
    • 按需加载所有自动配置项

      • 非常多的starter
      • 引入了哪些场景这个场景的自动配置才会开启
      • SpringBoot 所有的自动配置功能都在 spring-boot-autoconfigure 包里面

2. 容器功能

  • 组件添加

    • @Configuration

      • 基本使用
      • Full模式与Lite模式
        • 示例
        • 最佳实战
          • 配置类组件之间无依赖关系用Lite模式加速容器启动过程,减少判断
          • 配置类组件之间有依赖关系,方法会被调用得到之前单实例组件,用Full模式
      #############################Configuration使用示例######################################################
      /**
       * 1、配置类里面使用@Bean标注在方法上给容器注册组件,默认也是单实例的
       * 2、配置类本身也是组件
       * 3、proxyBeanMethods:代理bean的方法
       *      Full(proxyBeanMethods = true)、【保证每个@Bean方法被调用多少次返回的组件都是单实例的】
       *      Lite(proxyBeanMethods = false)【每个@Bean方法被调用多少次返回的组件都是新创建的】
       *      组件依赖必须使用Full模式默认。其他默认是否Lite模式
       *
       *
       *
       */
      @Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
      public class MyConfig {
      
          /**
           * Full:外部无论对配置类中的这个组件注册方法调用多少次获取的都是之前注册容器中的单实例对象
           * @return
           */
          @Bean //给容器中添加组件。以方法名作为组件的id。返回类型就是组件类型。返回的值,就是组件在容器中的实例
          public User user01(){
              User zhangsan = new User("zhangsan", 18);
              //user组件依赖了Pet组件
              zhangsan.setPet(tomcatPet());
              return zhangsan;
          }
      
          @Bean("tom")
          public Pet tomcatPet(){
              return new Pet("tomcat");
          }
      }
      
      
      ################################@Configuration测试代码如下########################################
      @SpringBootConfiguration
      @EnableAutoConfiguration
      @ComponentScan("com.alex.boot")
      public class MainApplication {
      
          public static void main(String[] args) {
              //1、返回我们IOC容器
              ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args);
      
              //2、查看容器里面的组件
              String[] names = run.getBeanDefinitionNames();
              for (String name : names) {
                  System.out.println(name);
              }
      
              //3、从容器中获取组件
      
              Pet tom01 = run.getBean("tom", Pet.class);
      
              Pet tom02 = run.getBean("tom", Pet.class);
      
              System.out.println("组件:"+(tom01 == tom02));
      
      
              //4、com.atguigu.boot.config.MyConfig$$EnhancerBySpringCGLIB$$51f1e1ca@1654a892
              MyConfig bean = run.getBean(MyConfig.class);
              System.out.println(bean);
      
              //如果@Configuration(proxyBeanMethods = true)代理对象调用方法。SpringBoot总会检查这个组件是否在容器中有。
              //保持组件单实例
              User user = bean.user01();
              User user1 = bean.user01();
              System.out.println(user == user1);
      
      
              User user01 = run.getBean("user01", User.class);
              Pet tom = run.getBean("tom", Pet.class);
      
              System.out.println("用户的宠物:"+(user01.getPet() == tom));
          }
      }
      
      
    • @Bean、@Component、@Controller、@Service、@Repository

    • @ComponentScan、@Import

      /*
       * 4、@Import({User.class, DBHelper.class})
       *      给容器中自动创建出这两个类型的组件、默认组件的名字就是全类名
       *
       *
       *
       */
      
      @Import({User.class, DBHelper.class})
      @Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
      public class MyConfig {
      }
      
    • @Conditional

      • 条件装配:满足Conditional指定的条件,则进行组件注入
      =====================测试条件装配==========================
      @Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
      //@ConditionalOnBean(name = "tom")
      @ConditionalOnMissingBean(name = "tom")
      public class MyConfig {
      
      
          /**
           * Full:外部无论对配置类中的这个组件注册方法调用多少次获取的都是之前注册容器中的单实例对象
           * @return
           */
      
          @Bean //给容器中添加组件。以方法名作为组件的id。返回类型就是组件类型。返回的值,就是组件在容器中的实例
          public User user01(){
              User zhangsan = new User("zhangsan", 18);
              //user组件依赖了Pet组件
              zhangsan.setPet(tomcatPet());
              return zhangsan;
          }
      
          @Bean("tom22")
          public Pet tomcatPet(){
              return new Pet("tomcat");
          }
      }
      
      public static void main(String[] args) {
              //1、返回我们IOC容器
              ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args);
      
              //2、查看容器里面的组件
              String[] names = run.getBeanDefinitionNames();
              for (String name : names) {
                  System.out.println(name);
              }
      
              boolean tom = run.containsBean("tom");
              System.out.println("容器中Tom组件:"+tom);
      
              boolean user01 = run.containsBean("user01");
              System.out.println("容器中user01组件:"+user01);
      
              boolean tom22 = run.containsBean("tom22");
              System.out.println("容器中tom22组件:"+tom22);
      
      
        }
      
  • 原生配置文件引入

    • @ImportResource
      ======================beans.xml=========================
      <?xml version="1.0" encoding="UTF-8"?>
      <beans xmlns="http://www.springframework.org/schema/beans"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xmlns:context="http://www.springframework.org/schema/context"
             xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
      
          <bean id="haha" class="com.atguigu.boot.bean.User">
              <property name="name" value="zhangsan"></property>
              <property name="age" value="18"></property>
          </bean>
      
          <bean id="hehe" class="com.atguigu.boot.bean.Pet">
              <property name="name" value="tomcat"></property>
          </bean>
      </beans>
      
      @ImportResource("classpath:beans.xml")
      public class MyConfig {}
      
      ======================测试=================
              boolean haha = run.containsBean("haha");
              boolean hehe = run.containsBean("hehe");
              System.out.println("haha:"+haha);//true
              System.out.println("hehe:"+hehe);//true
      
  • 配置绑定

    • 如何使用Java读取到properties文件中的内容,并且把它封装到JavaBean中,以供随时使用

      public class getProperties {
           public static void main(String[] args) throws FileNotFoundException, IOException {
               Properties pps = new Properties();
               pps.load(new FileInputStream("a.properties"));
               Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
               while(enum1.hasMoreElements()) {
                   String strKey = (String) enum1.nextElement();
                   String strValue = pps.getProperty(strKey);
                   System.out.println(strKey + "=" + strValue);
                   //封装到JavaBean。
               }
           }
       }
      
    • @Component + @ConfigurationProperties

      /**
       * 只有在容器中的组件,才会拥有SpringBoot提供的强大功能
       */
      @Component
      @ConfigurationProperties(prefix = "mycar")
      public class Car {
      
          private String brand;
          private Integer price;
      
          public String getBrand() {
              return brand;
          }
      
          public void setBrand(String brand) {
              this.brand = brand;
          }
      
          public Integer getPrice() {
              return price;
          }
      
          public void setPrice(Integer price) {
              this.price = price;
          }
      
          @Override
          public String toString() {
              return "Car{" +
                      "brand='" + brand + '\'' +
                      ", price=" + price +
                      '}';
          }
      }
      
    • @EnableConfigurationProperties + @ConfigurationProperties

      @EnableConfigurationProperties(Car.class)
      //1、开启Car配置绑定功能
      //2、把这个Car这个组件自动注册到容器中
      public class MyConfig {
      }
      

3. 自动配置原理入门

  • 引导加载自动配置类

    @SpringBootConfiguration
    @EnableAutoConfiguration
    @ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
    		@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
    public @interface SpringBootApplication{}   
    
    • @SpringBootConfiguration

      • @Configuration。代表当前是一个配置类
    • @ComponentScan

      • 指定扫描哪些,Spring注解;
    • @EnableAutoConfiguration

      @AutoConfigurationPackage
      @Import(AutoConfigurationImportSelector.class)
      public @interface EnableAutoConfiguration {}
      
      • @AutoConfigurationPackage

        • 自动配置包?指定了默认的包规则
          @Import(AutoConfigurationPackages.Registrar.class)  //给容器中导入一个组件
          public @interface AutoConfigurationPackage {}
          
          //利用Registrar给容器中导入一系列组件
          //将指定的一个包下的所有组件导入进来?MainApplication 所在包下。
          
          
      • @Import(AutoConfigurationImportSelector.class)

        1、利用getAutoConfigurationEntry(annotationMetadata);给容器中批量导入一些组件
        2、调用List<String> configurations = getCandidateConfigurations(annotationMetadata, attributes)获取到所有需要导入到容器中的配置类
        3、利用工厂加载 Map<String, List<String>> loadSpringFactories(@Nullable ClassLoader classLoader);得到所有的组件
        4、从META-INF/spring.factories位置来加载一个文件。
        	默认扫描我们当前系统里面所有META-INF/spring.factories位置的文件
            spring-boot-autoconfigure-2.3.4.RELEASE.jar包里面也有META-INF/spring.factories
            // 文件里面写死了spring-boot一启动就要给容器中加载的所有配置类
            
        
  • 按需开启自动配置项

    • 虽然我们127个场景的所有自动配置启动的时候默认全部加载。xxxxAutoConfiguration
    • 按照条件装配规则(@Conditional),最终会按需配置。
  • 修改默认配置

            @Bean
    		@ConditionalOnBean(MultipartResolver.class)  //容器中有这个类型组件
    		@ConditionalOnMissingBean(name = DispatcherServlet.MULTIPART_RESOLVER_BEAN_NAME) //容器中没有这个名字 multipartResolver 的组件
    		public MultipartResolver multipartResolver(MultipartResolver resolver) {
                //给@Bean标注的方法传入了对象参数,这个参数的值就会从容器中找。
                //SpringMVC multipartResolver。防止有些用户配置的文件上传解析器不符合规范
    			// Detect if the user has created a MultipartResolver but named it incorrectly
    			return resolver;
    		}
    // 给容器中加入了文件上传解析器;
    
    
    • SpringBoot默认会在底层配好所有的组件。但是如果用户自己配置了以用户的优先

      	@Bean
      	@ConditionalOnMissingBean
      	public CharacterEncodingFilter characterEncodingFilter() {
          }
      
    • 总结:

      • SpringBoot先加载所有的自动配置类 xxxxxAutoConfiguration
      • 每个自动配置类按照条件进行生效,默认都会绑定配置文件指定的值。xxxxProperties里面拿。xxxProperties和配置文件进行了绑定
      • 生效的配置类就会给容器中装配很多组件
      • 只要容器中有这些组件,相当于这些功能就有了
      • 定制化配置
        • 用户直接自己@Bean替换底层的组件
        • 用户去看这个组件是获取的配置文件什么值就去修改。
    • xxxxxAutoConfiguration —> 组件 —> xxxxProperties里面拿值 ----> application.properties

  • 最佳实践

    • 引入场景依赖

      • https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-starter
    • 查看自动配置了哪些(选做)

      • 自己分析,引入场景对应的自动配置一般都生效了
      • 配置文件中debug=true开启自动配置报告。Negative(不生效)\Positive(生效)
    • 是否需要修改

      • 参照文档修改配置项
        • https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html#common-application-properties
        • 自己分析。xxxxProperties绑定了配置文件的哪些。
      • 自定义加入或者替换组件
        • @Bean、@Component …
      • 自定义器 XXXXXCustomizer;

4. 开发小技巧

  • Lombok

            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
            </dependency>
    
    <!-- idea中搜索安装lombok插件 -->
    
    ===============================简化JavaBean开发===================================
    @NoArgsConstructor
    //@AllArgsConstructor
    @Data
    @ToString
    @EqualsAndHashCode
    public class User {
    
        private String name;
        private Integer age;
    
        private Pet pet;
    
        public User(String name,Integer age){
            this.name = name;
            this.age = age;
        }
    
    
    }
    
    
    
    ================================简化日志开发===================================
    @Slf4j
    @RestController
    public class HelloController {
        @RequestMapping("/hello")
        public String handle01(@RequestParam("name") String name){
            
            log.info("请求进来了....");
            
            return "Hello, Spring Boot 2!"+"你好:"+name;
        }
    }
    
  • dev-tools

            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <optional>true</optional>
            </dependency>
            
    <!-- 项目或者页面修改以后:Ctrl+F9; -->
    
  • Spring Initailizr(项目初始化向导)

    • 选择我们需要的开发场景
      在这里插入图片描述

    • 自动依赖引入
      在这里插入图片描述

    • 自动创建项目结构
      在这里插入图片描述

    • 自动编写好主配置类
      在这里插入图片描述

四、配置文件

1. 文件类型

  • properties
  • yaml
    • YAML 是 “YAML Ain’t Markup Language”(YAML 不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的意思其实是:“Yet Another Markup Language”(仍是一种标记语言)。非常适合用来做以数据为中心的配置文件

    • 基本语法

      • key: value;kv之间有空格
      • 大小写敏感
      • 使用缩进表示层级关系
      • 缩进不允许使用tab,只允许空格
      • 缩进的空格数不重要,只要相同层级的元素左对齐即可
      • '#'表示注释
      • 字符串无需加引号,如果要加,’'与""表示字符串内容 会被 转义/不转义
    • 数据类型

      • 字面量:单个的、不可再分的值。date、boolean、string、number、null

        k: v
        
      • 对象:键值对的集合。map、hash、set、object

        行内写法:  k: {k1:v1,k2:v2,k3:v3}
        #或
        k: 
          k1: v1
          k2: v2
          k3: v3
        
      • 数组:一组按次序排列的值。array、list、queue

        行内写法:  k: [v1,v2,v3]
        #或者
        k:
         - v1
         - v2
         - v3
        
    • 示例

      @Data
      public class Person {
      	
      	private String userName;
      	private Boolean boss;
      	private Date birth;
      	private Integer age;
      	private Pet pet;
      	private String[] interests;
      	private List<String> animal;
      	private Map<String, Object> score;
      	private Set<Double> salarys;
      	private Map<String, List<Pet>> allPets;
      }
      
      @Data
      public class Pet {
      	private String name;
      	private Double weight;
      }
      
      # yaml表示以上对象
      person:
        userName: zhangsan
        boss: false
        birth: 2019/12/12 20:12:33
        age: 18
        pet: 
          name: tomcat
          weight: 23.4
        interests: [篮球,游泳]
        animal: 
          - jerry
          - mario
        score:
          english: 
            first: 30
            second: 40
            third: 50
          math: [131,140,148]
          chinese: {first: 128,second: 136}
        salarys: [3999,4999.98,5999.99]
        allPets:
          sick:
            - {name: tom}
            - {name: jerry,weight: 47}
          health: [{name: mario,weight: 47}]
      

2. 配置提示

  • 自定义的类和配置文件绑定一般没有提示。
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>


 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.springframework.boot</groupId>
                            <artifactId>spring-boot-configuration-processor</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

五、Web开发

请添加图片描述

1. SpringMVC自动配置概览

  • Spring Boot provides auto-configuration for Spring MVC that works well with most applications.(大多场景我们都无需自定义配置)
  • The auto-configuration adds the following features on top of Spring’s defaults:
    ● Inclusion of ContentNegotiatingViewResolver and BeanNameViewResolver beans.
    ○ 内容协商视图解析器和BeanName视图解析器
    ● Support for serving static resources, including support for WebJars (covered later in this document)).
    ○ 静态资源(包括webjars)
    ● Automatic registration of Converter, GenericConverter, and Formatter beans.
    ○ 自动注册 Converter,GenericConverter,Formatter
    ● Support for HttpMessageConverters (covered later in this document).
    ○ 支持 HttpMessageConverters (后来我们配合内容协商理解原理)
    ● Automatic registration of MessageCodesResolver (covered later in this document).
    ○ 自动注册 MessageCodesResolver (国际化用)
    ● Static index.html support.
    ○ 静态index.html 页支持
    ● Custom Favicon support (covered later in this document).
    ○ 自定义 Favicon
    ● Automatic use of a ConfigurableWebBindingInitializer bean (covered later in this document).
    ○ 自动使用 ConfigurableWebBindingInitializer ,(DataBinder负责将请求数据绑定到JavaBean上)

2. 简单功能分析

  • 静态资源访问

    • 静态资源目录

      • 只要静态资源放在类路径下: called /static (or /public or /resources or /META-INF/resources)
      • 访问 : 当前项目根路径/ + 静态资源名
      • 原理: 静态映射/**。
      • 请求进来,先去找Controller看能不能处理。不能处理的所有请求又都交给静态资源处理器。静态资源也找不到则响应404页面
      • 改变默认的静态资源路径
        spring:
          mvc:
            static-path-pattern: /res/**
        
          resources:
            static-locations: [classpath:/haha/]
        
    • 静态资源访问前缀

      • 默认无前缀

        spring:
          mvc:
            static-path-pattern: /res/**
        
      • 当前项目 + static-path-pattern + 静态资源名 = 静态资源文件夹下找

    • webjar

              <dependency>
                  <groupId>org.webjars</groupId>
                  <artifactId>jquery</artifactId>
                  <version>3.5.1</version>
              </dependency>
      
      • 访问地址:http://localhost:8080/webjars/jquery/3.5.1/jquery.js 后面地址要按照依赖里面的包路径
  • 欢迎页支持

    • 静态资源路径下 index.html

      • 可以配置静态资源路径
      • 但是不可以配置静态资源的访问前缀。否则导致 index.html不能被默认访问
      spring:
      #  mvc:
      #    static-path-pattern: /res/**   这个会导致welcome page功能失效
      
        resources:
          static-locations: [classpath:/haha/]
      
    • controller能处理/index

  • 自定义 Favicon

    • favicon.ico 放在静态资源目录下即可。
    spring:
    #  mvc:
    #    static-path-pattern: /res/**   这个会导致 Favicon 功能失效
    
  • 静态资源配置原理

    • SpringBoot启动默认加载 xxxAutoConfiguration 类(自动配置类)
    • SpringMVC功能的自动配置类 WebMvcAutoConfiguration,生效
    @Configuration(proxyBeanMethods = false)
    @ConditionalOnWebApplication(type = Type.SERVLET)
    @ConditionalOnClass({ Servlet.class, DispatcherServlet.class, WebMvcConfigurer.class })
    @ConditionalOnMissingBean(WebMvcConfigurationSupport.class)
    @AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE + 10)
    @AutoConfigureAfter({ DispatcherServletAutoConfiguration.class, TaskExecutionAutoConfiguration.class,
    		ValidationAutoConfiguration.class })
    public class WebMvcAutoConfiguration {}
    
    • 给容器中配了什么。
    	@Configuration(proxyBeanMethods = false)
    	@Import(EnableWebMvcConfiguration.class)
    	@EnableConfigurationProperties({ WebMvcProperties.class, ResourceProperties.class })
    	@Order(0)
    	public static class WebMvcAutoConfigurationAdapter implements WebMvcConfigurer {}
    
    • 配置文件的相关属性和xxx进行了绑定。WebMvcProperties==spring.mvc、ResourceProperties==spring.resources

    • 配置类只有一个有参构造器

      	//有参构造器所有参数的值都会从容器中确定
      //ResourceProperties resourceProperties;获取和spring.resources绑定的所有的值的对象
      //WebMvcProperties mvcProperties 获取和spring.mvc绑定的所有的值的对象
      //ListableBeanFactory beanFactory Spring的beanFactory
      //HttpMessageConverters 找到所有的HttpMessageConverters
      //ResourceHandlerRegistrationCustomizer 找到 资源处理器的自定义器。=========
      //DispatcherServletPath  
      //ServletRegistrationBean   给应用注册Servlet、Filter....
      	public WebMvcAutoConfigurationAdapter(ResourceProperties resourceProperties, WebMvcProperties mvcProperties,
      				ListableBeanFactory beanFactory, ObjectProvider<HttpMessageConverters> messageConvertersProvider,
      				ObjectProvider<ResourceHandlerRegistrationCustomizer> resourceHandlerRegistrationCustomizerProvider,
      				ObjectProvider<DispatcherServletPath> dispatcherServletPath,
      				ObjectProvider<ServletRegistrationBean<?>> servletRegistrations) {
      			this.resourceProperties = resourceProperties;
      			this.mvcProperties = mvcProperties;
      			this.beanFactory = beanFactory;
      			this.messageConvertersProvider = messageConvertersProvider;
      			this.resourceHandlerRegistrationCustomizer = resourceHandlerRegistrationCustomizerProvider.getIfAvailable();
      			this.dispatcherServletPath = dispatcherServletPath;
      			this.servletRegistrations = servletRegistrations;
      		}
      
    • 资源处理的默认规则

      @Override
      		public void addResourceHandlers(ResourceHandlerRegistry registry) {
      			if (!this.resourceProperties.isAddMappings()) {
      				logger.debug("Default resource handling disabled");
      				return;
      			}
      			Duration cachePeriod = this.resourceProperties.getCache().getPeriod();
      			CacheControl cacheControl = this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl();
      			//webjars的规则
                  if (!registry.hasMappingForPattern("/webjars/**")) {
      				customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**")
      						.addResourceLocations("classpath:/META-INF/resources/webjars/")
      						.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
      			}
                  
                  //
      			String staticPathPattern = this.mvcProperties.getStaticPathPattern();
      			if (!registry.hasMappingForPattern(staticPathPattern)) {
      				customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern)
      						.addResourceLocations(getResourceLocations(this.resourceProperties.getStaticLocations()))
      						.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
      			}
      		}
      
      spring:
      #  mvc:
      #    static-path-pattern: /res/**
      
        resources:
          add-mappings: false   禁用所有静态资源规则
      
      @ConfigurationProperties(prefix = "spring.resources", ignoreUnknownFields = false)
      public class ResourceProperties {
      
      	private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { "classpath:/META-INF/resources/",
      			"classpath:/resources/", "classpath:/static/", "classpath:/public/" };
      
      	/**
      	 * Locations of static resources. Defaults to classpath:[/META-INF/resources/,
      	 * /resources/, /static/, /public/].
      	 */
      	private String[] staticLocations = CLASSPATH_RESOURCE_LOCATIONS;
      
    • 欢迎页的处理规则

      	HandlerMapping:处理器映射。保存了每一个Handler能处理哪些请求。	
      
      	@Bean
      		public WelcomePageHandlerMapping welcomePageHandlerMapping(ApplicationContext applicationContext,
      				FormattingConversionService mvcConversionService, ResourceUrlProvider mvcResourceUrlProvider) {
      			WelcomePageHandlerMapping welcomePageHandlerMapping = new WelcomePageHandlerMapping(
      					new TemplateAvailabilityProviders(applicationContext), applicationContext, getWelcomePage(),
      					this.mvcProperties.getStaticPathPattern());
      			welcomePageHandlerMapping.setInterceptors(getInterceptors(mvcConversionService, mvcResourceUrlProvider));
      			welcomePageHandlerMapping.setCorsConfigurations(getCorsConfigurations());
      			return welcomePageHandlerMapping;
      		}
      
      	WelcomePageHandlerMapping(TemplateAvailabilityProviders templateAvailabilityProviders,
      			ApplicationContext applicationContext, Optional<Resource> welcomePage, String staticPathPattern) {
      		if (welcomePage.isPresent() && "/**".equals(staticPathPattern)) {
                  //要用欢迎页功能,必须是/**
      			logger.info("Adding welcome page: " + welcomePage.get());
      			setRootViewName("forward:index.html");
      		}
      		else if (welcomeTemplateExists(templateAvailabilityProviders, applicationContext)) {
                  // 调用Controller  /index
      			logger.info("Adding welcome page template: index");
      			setRootViewName("index");
      		}
      	}
      
      
    • favicon

3. 请求参数处理

  • 请求映射

    • rest使用与原理
      • @xxxMapping;
      • Rest风格支持(使用HTTP请求方式动词来表示对资源的操作)
        • 以前:/getUser 获取用户 /deleteUser 删除用户 /editUser 修改用户 /saveUser 保存用户
        • 现在: /user GET-获取用户 DELETE-删除用户 PUT-修改用户 POST-保存用户
        • 核心Filter;HiddenHttpMethodFilter
          • 用法: 表单method=post,隐藏域 _method=put
          • SpringBoot 中手动开启
        • 扩展:如何把_method 这个名字换成我们自己喜欢的。
        @RequestMapping(value = "/user",method = RequestMethod.GET)
        public String getUser(){
            return "GET-张三";
        }
    
        @RequestMapping(value = "/user",method = RequestMethod.POST)
        public String saveUser(){
            return "POST-张三";
        }
    
    
        @RequestMapping(value = "/user",method = RequestMethod.PUT)
        public String putUser(){
            return "PUT-张三";
        }
    
        @RequestMapping(value = "/user",method = RequestMethod.DELETE)
        public String deleteUser(){
            return "DELETE-张三";
        }
    
    
    	@Bean
    	@ConditionalOnMissingBean(HiddenHttpMethodFilter.class)
    	@ConditionalOnProperty(prefix = "spring.mvc.hiddenmethod.filter", name = "enabled", matchIfMissing = false)
    	public OrderedHiddenHttpMethodFilter hiddenHttpMethodFilter() {
    		return new OrderedHiddenHttpMethodFilter();
    	}
    
    
    	//自定义filter
        @Bean
        public HiddenHttpMethodFilter hiddenHttpMethodFilter(){
            HiddenHttpMethodFilter methodFilter = new HiddenHttpMethodFilter();
            methodFilter.setMethodParam("_m");
            return methodFilter;
        }
    
    • Rest原理(表单提交要使用REST的时候)
      • 表单提交会带上 _method=PUT
      • 请求过来被 HiddenHttpMethodFilter 拦截
        • 请求是否正常,并且是POST
          • 获取到_method的值。
          • 兼容以下请求;PUT.DELETE.PATCH
          • 原生request(post),包装模式requestWrapper重写了getMethod方法,返回的是传入的值。
          • 过滤器链放行的时候用wrapper。以后的方法调用getMethod是调用requesWrapper的。
    • Rest使用客户端工具,
      • 如PostMan直接发送Put、delete等方式请求,无需Filter。
    spring:
      mvc:
        hiddenmethod:
          filter:
            enabled: true   #开启页面表单的Rest功能
    
    • 请求映射原理
      在这里插入图片描述
    • SpringMVC功能分析都从 org.springframework.web.servlet.DispatcherServlet -> doDispatch()
    protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
    		HttpServletRequest processedRequest = request;
    		HandlerExecutionChain mappedHandler = null;
    		boolean multipartRequestParsed = false;
    
    		WebAsyncManager asyncManager = WebAsyncUtils.getAsyncManager(request);
    
    		try {
    			ModelAndView mv = null;
    			Exception dispatchException = null;
    
    			try {
    				processedRequest = checkMultipart(request);
    				multipartRequestParsed = (processedRequest != request);
    
    				// 找到当前请求使用哪个Handler(Controller的方法)处理
    				mappedHandler = getHandler(processedRequest);
                    
                    //HandlerMapping:处理器映射。/xxx->>xxxx
    

    在这里插入图片描述

    • RequestMappingHandlerMapping:保存了所有@RequestMapping 和handler的映射规则。
      在这里插入图片描述
    • 所有的请求映射都在HandlerMapping中。
      • SpringBoot自动配置欢迎页的 WelcomePageHandlerMapping 。访问 /能访问到index.html;
      • SpringBoot自动配置了默认 的 RequestMappingHandlerMapping
      • 请求进来,挨个尝试所有的HandlerMapping看是否有请求信息。
        • 如果有就找到这个请求对应的handler
        • 如果没有就是下一个 HandlerMapping
      • 我们需要一些自定义的映射处理,我们也可以自己给容器中放HandlerMapping。自定义 HandlerMapping
  • 普通参数与基本注解

    • 注解:
      @PathVariable、@RequestHeader、@ModelAttribute、@RequestParam、@MatrixVariable、@CookieValue、@RequestBody
@RestController
public class ParameterTestController {


    //  car/2/owner/zhangsan
    @GetMapping("/car/{id}/owner/{username}")
    public Map<String,Object> getCar(@PathVariable("id") Integer id,
                                     @PathVariable("username") String name,
                                     @PathVariable Map<String,String> pv,
                                     @RequestHeader("User-Agent") String userAgent,
                                     @RequestHeader Map<String,String> header,
                                     @RequestParam("age") Integer age,
                                     @RequestParam("inters") List<String> inters,
                                     @RequestParam Map<String,String> params,
                                     @CookieValue("_ga") String _ga,
                                     @CookieValue("_ga") Cookie cookie){


        Map<String,Object> map = new HashMap<>();

//        map.put("id",id);
//        map.put("name",name);
//        map.put("pv",pv);
//        map.put("userAgent",userAgent);
//        map.put("headers",header);
        map.put("age",age);
        map.put("inters",inters);
        map.put("params",params);
        map.put("_ga",_ga);
        System.out.println(cookie.getName()+"===>"+cookie.getValue());
        return map;
    }


    @PostMapping("/save")
    public Map postMethod(@RequestBody String content){
        Map<String,Object> map = new HashMap<>();
        map.put("content",content);
        return map;
    }


    //1、语法: 请求路径:/cars/sell;low=34;brand=byd,audi,yd
    //2、SpringBoot默认是禁用了矩阵变量的功能
    //      手动开启:原理。对于路径的处理。UrlPathHelper进行解析。
    //              removeSemicolonContent(移除分号内容)支持矩阵变量的
    //3、矩阵变量必须有url路径变量才能被解析
    @GetMapping("/cars/{path}")
    public Map carsSell(@MatrixVariable("low") Integer low,
                        @MatrixVariable("brand") List<String> brand,
                        @PathVariable("path") String path){
        Map<String,Object> map = new HashMap<>();

        map.put("low",low);
        map.put("brand",brand);
        map.put("path",path);
        return map;
    }

    // /boss/1;age=20/2;age=10

    @GetMapping("/boss/{bossId}/{empId}")
    public Map boss(@MatrixVariable(value = "age",pathVar = "bossId") Integer bossAge,
                    @MatrixVariable(value = "age",pathVar = "empId") Integer empAge){
        Map<String,Object> map = new HashMap<>();

        map.put("bossAge",bossAge);
        map.put("empAge",empAge);
        return map;

    }

}
  • 参数处理原理
    • HandlerMapping中找到能处理请求的Handler(Controller.method())

    • 为当前Handler 找一个适配器 HandlerAdapter; RequestMappingHandlerAdapter

    • 适配器执行目标方法并确定方法参数的每一个值

    • HandlerAdapter
      在这里插入图片描述

      • 0 - 支持方法上标注@RequestMapping
        1 - 支持函数式编程的
        xxxxxx
    • 执行目标方法

// Actually invoke the handler.
//DispatcherServlet -- doDispatch
mv = ha.handle(processedRequest, response, mappedHandler.getHandler());


mav = invokeHandlerMethod(request, response, handlerMethod); //执行目标方法


//ServletInvocableHandlerMethod
Object returnValue = invokeForRequest(webRequest, mavContainer, providedArgs);
//获取方法的参数值
Object[] args = getMethodArgumentValues(request, mavContainer, providedArgs);

  • 参数解析器-HandlerMethodArgumentResolver
    • 确定将要执行的目标方法的每一个参数的值是什么;
    • SpringMVC目标方法能写多少种参数类型。取决于参数解析器。
      在这里插入图片描述
      在这里插入图片描述
    • 当前解析器是否支持解析这种参数
    • 支持就调用 resolveArgument
  • 返回值处理器
    在这里插入图片描述
  • 如何确定目标方法每一个参数的值
============InvocableHandlerMethod==========================
protected Object[] getMethodArgumentValues(NativeWebRequest request, @Nullable ModelAndViewContainer mavContainer,
			Object... providedArgs) throws Exception {

		MethodParameter[] parameters = getMethodParameters();
		if (ObjectUtils.isEmpty(parameters)) {
			return EMPTY_ARGS;
		}

		Object[] args = new Object[parameters.length];
		for (int i = 0; i < parameters.length; i++) {
			MethodParameter parameter = parameters[i];
			parameter.initParameterNameDiscovery(this.parameterNameDiscoverer);
			args[i] = findProvidedArgument(parameter, providedArgs);
			if (args[i] != null) {
				continue;
			}
			if (!this.resolvers.supportsParameter(parameter)) {
				throw new IllegalStateException(formatArgumentError(parameter, "No suitable resolver"));
			}
			try {
				args[i] = this.resolvers.resolveArgument(parameter, mavContainer, request, this.dataBinderFactory);
			}
			catch (Exception ex) {
				// Leave stack trace for later, exception may actually be resolved and handled...
				if (logger.isDebugEnabled()) {
					String exMsg = ex.getMessage();
					if (exMsg != null && !exMsg.contains(parameter.getExecutable().toGenericString())) {
						logger.debug(formatArgumentError(parameter, exMsg));
					}
				}
				throw ex;
			}
		}
		return args;
	}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
核心功能 文章/图片/视频发布、喜欢、统计阅读次数。 文章标签tag功能、支持按tag分类 文章支持ueditor/markdown编辑器切换(后台配置) 评论功能,支持回复,支持表情。 第三方(微博、QQ)登录。 lucene实现的站内搜索。 响应式布局 支持用户订阅 先看效果图 SpringBoot开发非常美观的java博客系统(包含后台管理功能) SpringBoot开发非常美观的java博客系统(包含后台管理功能) SpringBoot开发非常美观的java博客系统(包含后台管理功能) http://localhost:8080/admin/group/list SpringBoot开发非常美观的java博客系统(包含后台管理功能) SpringBoot开发非常美观的java博客系统(包含后台管理功能)SpringBoot开发非常美观的java博客系统(包含后台管理功能) 技术选型: JDK8 数据库MySQL 主框架 (Spring-bootSpring-data-jpa) 安全权限 Shiro 搜索工具 Lucene 缓存 Ehcache 视图模板 Freemarker 其它 Jsoup、fastjson jQuery、Seajs Bootstrap 前端框架 UEditor/Markdown编辑器 font-Awesome 字体/图标 准备工作(sql文件在项目里面) 安装 Jdk8 安装 Maven 准备 IDE (如果你不看源码,可以忽略下面的步骤,直接通过Maven编译war包:mvn clean package -DskipTests) IDE 需要配置的东西 编码方式设为UTF-8 配置Maven 设置Jdk8 关于这些配置,网上有一大把的资料,所以此处不再重复。 获取代码导入到IDE 下载代码 导入到IDE的时候请选择以Maven的方式导入 项目配置参考 系统配置手册 配置完毕 启动项目,在控制台看到Mblog加载完毕的信息后,表示启动成功 打开浏览器输入:http//localhost/mblog/ (此处仅是示例,具体具体端口因人而异),访问成功即部署完毕 后台管理的地址是 /admin, 如果你是管理员账号点导航栏的头像会看到"后台管理" 启动成功后,你应该去后台的系统配置里配置你的网站信息等。 常见问题总结 进入系统后, 菜单加载不出来, 那应该是你没有导 db_init.sql 点标签显示乱码, 请设置Tomcat的 URIEncoding 为 UTF-8 项目截图 SpringBoot开发非常美观的java博客系统(包含后台管理功能) 转自:https://gitee.com/mtons/mblog SpringBoot开发非常美观的java博客系统(包含后台管理功能) 注意: 一、java main方式运行mblog-web下的BootApplication.java时抛出异常的解决方案 Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean. SpringBoot开发非常美观的java博客系统(包含后台管理功能) 注释掉后下面图片的这段后,记得maven要重新reimport SpringBoot开发非常美观的java博客系统(包含后台管理功能) SpringBoot开发非常美观的java博客系统(包含后台管理功能) 否则maven依赖不生效还是会抛出以上的异常 二、第三方登录点击后无响应,那是因为第三方开放平台回调的url失效导致,需要你去对应的第三方开放平台注册app后获取对应的oauth帐号 SpringBoot开发非常美观的java博客系统(包含后台管理功能) 三、idea以maven项目导入该项目后,发现没有maven的依赖包时,需要对每个maven module进行clear和install,并且注意maven的依赖顺序 SpringBoot开发非常美观的java博客系统(包含后台管理功能) SpringBoot开发非常美观的java博客系统(包含后台管理功能) 四、访问地址是http://localhost:8080 登录时,帐号,密码只要自己找个密码,然后md5下在更新到db中即可登录成功。 比如:zuidaima 111111,md5后密码是 3931MUEQD1939MQMLM4AISPVNE,md5的javaSpringBoot开发非常美观的java博客系统(包含后台管理功能) SpringBoot开发非常美观的java博客系统(包含后台管理功能)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

柠檬小帽

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值