• 【Spring Boot】Day03


    一、@Value和@ConfigurationProperties的区别

    区别:

    • 数据校验:判断数据是否合法
      • @Value: 不支持数据校验
      • @ConfigurationProperties:支持数据校验
        开启数据校验功能:
        1. 类上添加:@Validated
        2. 在属性上添加特定的校验注解 @Email

    注意1:在使用@Email中,需要导入一个依赖

    <dependency>
    	<groupId>org.springframework.boot</groupId>
    	<artifactId>spring-boot-starter-validation</artifactId>
    </dependency>
    
    • 1
    • 2
    • 3
    • 4

    注意2:如果使用了@Value,就不需要@ConfigurationProperties,程序就不知道properties里面写的什么,只是@Value赋值的就会显示,没赋值的就不会显示;两种方式只会顾着一边。

    package com.zy.springboot.bean;
    
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.boot.context.properties.ConfigurationProperties;
    import org.springframework.stereotype.Component;
    import org.springframework.validation.annotation.Validated;
    
    import javax.validation.constraints.Email;
    import java.util.Date;
    import java.util.List;
    import java.util.Map;
    /***
     *
     * 读取配置文件中的数据,映射到此类的同名属性
     * @ConfigurationProperties
     *  prefix = "person": 读取person节点的数据
     *  @Component:让spring容器管理此类
     *
     *@Value("${person.name}") 参数名字必须和配置文件中的一样,即可跳转
     *
     * 数据校验:判断数据是否合法
     *  @Value: 不支持数据校验
     *  @ConfigurationProperties:支持数据校验
     *       开启数据校验功能:
     *           1. 类上添加:@Validated
     *           2. 在属性上添加特定的校验注解
     *                 @Email
     */
    
    @Validated
    @Component
    @ConfigurationProperties(prefix = "person")
    public class Person {
    //    @Value("李四")
        @Email(message = "不是邮箱格式")//校验邮箱
        private String name;
    //    @Value("20")
        private Integer age;
    //    @Value("${person.birth}")  //不需要使用ConfigurationProperties,会自动识别person
        private Date birth;
    //    @Value("${person.b}")
        private Boolean b;
        private Map<String,String> maps;
        private List<String> lists;
        private Dog dog;
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public Integer getAge() {
            return age;
        }
    
        public void setAge(Integer age) {
            this.age = age;
        }
    
        public Date getBirth() {
            return birth;
        }
    
        public void setBirth(Date birth) {
            this.birth = birth;
        }
    
        public Boolean getB() {
            return b;
        }
    
        public void setB(Boolean b) {
            this.b = b;
        }
    
        public Map<String, String> getMaps() {
            return maps;
        }
    
        public void setMaps(Map<String, String> maps) {
            this.maps = maps;
        }
    
        public List<String> getLists() {
            return lists;
        }
    
        public void setLists(List<String> lists) {
            this.lists = lists;
        }
    
        public Dog getDog() {
            return dog;
        }
    
        public void setDog(Dog dog) {
            this.dog = dog;
        }
    
        @Override
        public String toString() {
            return "Person{" +
                    "name='" + name + '\'' +
                    ", age=" + age +
                    ", birth=" + birth +
                    ", b=" + b +
                    ", maps=" + maps +
                    ", lists=" + lists +
                    ", dog=" + dog +
                    '}';
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116

    会显示结果:
    在这里插入图片描述

    二、@PropertySource

    区别:

    • @ConfigurationProperties(prefix = “person”)是从全局配置文件中读取
      @PropertySource(“classpath:jdbc.properties”)可以指定配置文件

    创建jdbc.properties

    jdbc.driverClassName=com.mysql.jdbc.Driver
    jdbc.url=jdbc\:mysql\://localhost\:3306/examsystem
    jdbc.username=root
    jdbc.password=12345
    
    • 1
    • 2
    • 3
    • 4

    创建JDBCProperties类

    package com.zy.springboot.bean;
    
    
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.context.annotation.PropertySource;
    import org.springframework.stereotype.Component;
    /*
    *
    * @ConfigurationProperties(prefix = "person")是从全局配置文件中读取
    * @PropertySource("classpath:jdbc.properties")可以指定配置文件
    *
    *
    * */
    @Component
    @PropertySource("classpath:jdbc.properties")
    public class JDBCProperties {
    
        @Value("${jdbc.driverClassName}")
        private String driverClassName;
        @Value("${jdbc.url}")
        private String url;
    
        public String getDriverClassName() {
            return driverClassName;
        }
    
        public void setDriverClassName(String driverClassName) {
            this.driverClassName = driverClassName;
        }
    
        public String getUrl() {
            return url;
        }
    
        public void setUrl(String url) {
            this.url = url;
        }
    
        @Override
        public String toString() {
            return "JDBCProperties{" +
                    "driverClassName='" + driverClassName + '\'' +
                    ", url='" + url + '\'' +
                    '}';
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47

    测试

    @Resource
    	JDBCProperties jdbcProperties;
    
    	@Test
    	public void getProperties(){
    		System.out.println(jdbcProperties);
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    结果显示
    在这里插入图片描述

    三、切换不同环境的配置

    1. 不同配置文件

    • 正式环境 开发环境
    • 两个开发环境的数据库不一致
    • 设置启用的配置文件
      在这里插入图片描述

    application.properties

    spring.profiles.active=prod
    
    • 1

    application-dev.properties

    server.port=8888
    
    • 1

    application-prod.properties

    server.port=9999
    
    • 1

    演示

    package com.zy.springboot;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class Springboot02Application {
    
    	public static void main(String[] args) {
    		SpringApplication.run(Springboot02Application.class, args);
    	}
    
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    在这里插入图片描述

    2. yml文档块

    • 实际项目测试中,需要不同的环境,例如:测试环境、运行环境、正式环境等等,不同的环境对应着不同的端口号,如何快速的转换环境,可通过配置文件来设定。
    • yml文件通过多文档块的方式配置不同的环境。
    • 每个文档块通过【- - -】隔离生成
    spring:
      profiles:
        active: prod
    
    ---
    server:
      port: 8888
    spring:         //此为最新形式
      config:
        activate:
        on-profile: dev
    ---
    server:
      port: 9999
    spring:
      config:
        activate:
          on-profile: prod
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    四、配置文件加载顺序

    按照优先级从高到低的顺序,所有的配置文件都会被加载,优先级的配置会覆盖低优先级的配置内容。

    在这里插入图片描述

  • 相关阅读:
    手把手教你用Yolov5 (v6.2) 训练分类模型 基于《Kaggle猫狗大战》案例
    重新思考边缘负载均衡
    Apple ID 登录
    【Java笔试强训】Day5(45842-统计回文、58539-连续最大和)
    C++从入门到精通 第十四章(STL容器)【上】
    01背包&完全背包学习记录
    2022绵阳+dp经典问题
    Docker 完整版教程
    已解决ValueError: More than 4094 XFs (styles)
    项目经理的进阶之路——项目集管理
  • 原文地址:https://blog.csdn.net/weixin_44926962/article/details/127894097