Spring中读取配置文件的五种方式

Spring中读取配置文件的五种方式

  1. @Value:只能读取单个配置项
  2. @ConfigurationProperties:可以一次性读取多个配置项,将多个配置项转换为Bean对象。需要配合prefix使用。
  3. @PropertySource+@Value:获取自定义配置文件的单个配置项。
  4. @PropertySource+@ConfigurationProperties:获取自定义配置文件的多个配置项。
  5. Environment的getProperty方法获取,很少使用。

举例说明:

第一种:@Value注解方式获取

application.yml

server:
  port: 9201

取值方式:

    @Value("${server.port}")
    private String port;
第二种:@ConfigurationProperties注解方式获取

application.yml

student:
  name: 张三
  age: 18

取值方式:

@Configuration
@ConfigurationProperties(prefix = "student")
public class CaptchaProperties{
	private String name;
	private Integer age;
	...
}

注:需要配和@Component使用,本文中使用的@Configuration,我们查看Configuration注解会发现它使用了@Component注解

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Configuration {
...
}
第三种:@PropertyResource + @Value注解方式获取,可读取自定义配置文件。只支持读取.properties类型的配置文件,yml类型的配置文件需要自定义。

student.properties

student.name = 张三
student.age = 18

取值方式:

@Component
@PropertyResouce(value = "classpath:student.properties")
public class Student implements Serializable{
	@Value("${student.name}")
	private String name;
	
	@Value("${student.age}")
	private Integer age;
	...
}
第四种:@PropertyResource + @ConfigurationProperties注解方式获取,可读取自定义配置文件。只支持读取.properties类型的配置文件,yml类型的配置文件需要自定义。

student.properties

student.name = 张三
student.age = 18

取值方式:

/**
 * @Component标识为是Spring的一个组件,只有容器组件,容器才会为ConfigurationProperties提供此注入共    	
 * 功能
 */
@Component
@PropertyResouce(value = "classpath:student.properties")
@ConfigurationProperties(prefix = "student")
public class Student implements Serializable{
	private String name;
	private Integer age;
	...
}
第五种:Environment方式读取,基本很少使用

application.yml

student:
  name: 张三
  age: 18

取值方式:

...
@Autowired
private Environment env;

public String getUserName(){
	return env.getProperty("student.name");
}
...

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值