spring boot配置文件

这里写目录标题

        • 1.配置文件
        • 2.YAML(YAML Ain't Markup Language)
        • 3. YAML语法
        • 4.yaml文件样例
        • 5.Spring的单元测试位置和注解
        • 6.加载指定的配置文件
        • 7. 导入自定义的Spring配置文件

1.配置文件

SpringBoot使用一个全局的配置文件,配置文件名是固定的;
•application.properties
•application.yml
配置文件的作用:
修改SpringBoot自动配置的默认值;SpringBoot在底层都给我们自动配置好;

2.YAML(YAML Ain’t Markup Language)

YAML A Markup Language:是一个标记语言
YAML isn’t MarkupLanguage:不是一个标记语言;
标记语言:
以前的配置文件;大多都使用的是xxxx.xml文件;
YAML:以数据为中心,比json、xml等更适合做配置文件;
YAML:配置例子

server:
 port: 8081

3. YAML语法

1.基本语法
k:(空格)v:表示一对键值对(空格必须有);
以空格的缩进来控制层级关系;只要是左对齐的一列数据,都是同一个层级的

server:
 port: 8081
 path: /hello

属性和值也是大小写敏感;
2.值的写法
字面量:普通的值(数字,字符串,布尔)
字符串默认不用加上单引号或者双引号;
“”:双引号;不会转义字符串里面的特殊字符;特殊字符会作为本身想表示的意思
name:“zhangsan\nlisi”:输出;zhangsan换行lisi
‘’:单引号;会转义特殊字符,特殊字符最终只是一个普通的字符串数据
name:‘zhangsan\nlisi’:输出;zhangsan\nlisi
3.对象、Map(属性和值)(键值对):

friends:
 lastName: zhangsan
 age: 20

行内写法:

friends:{lastName: zhangsan,age: 18}

4.数组(List、Set)
用-值表示数组中的一个元素

pets:
 - cat
 - dog
 - pig

4.yaml文件样例

1.创建bean类

public class Person {
    private String lastName;
    private Integer age;
    private Boolean boss;
    private Date birth;
    private Map<String,Object> maps;
    private List<Object> lists;
    private Dog dog;
	//省略get和set方法
	}
public class Dog {
    private String name;
    private Integer age;
	//省略get和set方法
}

2.配置yml文件

person:
 lastName: hello
 age: 18
 boss: false
 birth: 2017/12/12
 maps: {key1: v1,k2: 12}
 lists:
  - lisi
  - zhaoliu
 dog:
  name: 小狗
  age: 12

3.将配置文件中配置的每一个属性的值,映射到组件中,在Person类上添加如下注解。

@ConfigurationProperties(prefix = "person")

@ConfigurationProperties:告诉SpringBoot将本类中的所有属性和配置文件中相关的配置进行绑定;
prefix = “person”:配置文件中哪个下面的所有属性进行一一映射
添加组件注解
@Component
最后代码如下:

@Component
@ConfigurationProperties(prefix = "person")
public class Person {
    private String lastName;
    private Integer age;
    private Boolean boss;
    private Date birth;
    private Map<String,Object> maps;
    private List<Object> lists;
    private Dog dog;
	//省略get和set方法
}

4.在pom.xml中导入提示包


	org.springframework.boot
	spring-boot-configuration-processor
	true

5.也可以配置在application.proterties中

person.last-name=张三
person.age=18
person.birth=2017/12/15
person.boss=false
person.maps.k1=v1
person.maps.k2=14
person.lists=a,b,c
person.dog.name=dog
person.dog.age=15

6.解决中文乱码
idea中的properties配置文件默认是utf-8编码
file->settings->file Encodings->勾上Transparent native-to-ascii conversion
7.java代码中的另一种配置
去掉@ConfigurationProperties(prefix=“person”)
可以使用@Value("")//"字面量/${key}从环境变量、配置文件中获取值/#{SpEL}
默认从全局配置文件中获取值

@Component
public class Person {
    @Value("${person.last-name}")
    private String lastName;
    @Value("#{11*2}")
    private Integer age;
    @Value("true")
    private Boolean boss;
    private Date birth;
    //@Value("${person.maps}")
    private Map<String,Object> maps;
    private List<Object> lists;
    private Dog dog;
	}

@ConfigurationProperties和@Value对比
spring boot配置文件_第1张图片

松散绑定的含义:
属性名匹配规则(Relaxed binding)
– person.firstName:使用标准方式
– person.first-name:大写用-
– person.first_name:大写用_
– PERSON_FIRST_NAME:推荐系统属性使用这种写法
配置文件配置校验:

@Component
@ConfigurationProperties(prefix = "person")
@Validated
public class Person {
   @Email
    private String lastName;
    private Integer age;
    private Boolean boss;
    private Date birth;
    private Map<String,Object> maps;
    private List<Object> lists;
    private Dog dog;
	}

如果说,我们只是在某个业务逻辑中需要获取一下配置文件中的某项值,使用@Value;
如果说,我们专门编写了一个javaBean来和配置文件进行映射,我们就直接使用@ConfigurationProperties;
使用示例:

@RestController
public class HelloController {
    @Value("${person.last-name}")
    private String name;
    @RequestMapping("/sayHello")
    public String sayHello(){
        return "Hello "+name;
    }
}

5.Spring的单元测试位置和注解

位置:
项目名\src\test\java
作用:
可以在测试期间很方便的类似编码一样进行自动注入等容器的功能

@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringBoot02ConfigApplicationTests {
	@Autowired
	Person person;
	@Test
	public void contextLoads() {
		System.out.println(person);
	}
}

6.加载指定的配置文件

@PropertySource:加载指定的配置文件

@PropertySource(value = {"classpath:person.properties"})
@Component
@ConfigurationProperties(prefix = "person")
public class Person {
    private String lastName;
    private Integer age;
    private Boolean boss;
    private Date birth;
    private Map<String,Object> maps;
    private List<Object> lists;
    private Dog dog;
}	

7. 导入自定义的Spring配置文件

@ImportResource:导入Spring的配置文件,让配置文件里面的内容生效;
Spring Boot里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别;
想让Spring的配置文件生效,加载进来;
@ImportResource标注在一个配置类上
@ImportResource(locations = {“classpath:beans.xml”})
导入Spring的配置文件让其生效

@ImportResource(locations = {"classpath:beans.xml"})
@SpringBootApplication
public class SpringBoot02ConfigApplication {

	public static void main(String[] args) {
		SpringApplication.run(SpringBoot02ConfigApplication.class, args);
	}
}

beans.xml配置信息如下:


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="helloService" class="com.atguigu.springboot.service.HelloService">bean>
beans>	

SpringBoot推荐给容器中添加组件的方式;推荐使用全注解的方式
1、配置类@Configuration------>Spring配置文件
2、使用@Bean给容器中添加组件

/**
 * @Configuration:指明当前类是一个配置类;就是来替代之前的Spring配置文件
 *
 * 在配置文件中用标签添加组件
 *
 */
@Configuration
public class MyAppConfig {
    //将方法的返回值添加到容器中;容器中这个组件默认的id就是方法名
    @Bean
    public HelloService helloService02(){
        System.out.println("配置类@Bean给容器中添加组件了...");
        return new HelloService();
    }
}

你可能感兴趣的:(spring boot配置文件)